摘要:
#include #include #define inf 0x7fffffff #define N 100010 using namespace std; inline int read() { int x = 0,f = 1;char ch = getchar(); while (ch '9') {if (ch == '-')f = -1;ch = getchar();... 阅读全文
摘要:
★ 输入文件:matrixc.in 输出文件:matrixc.out 简单对比 时间限制:1 s 内存限制:256 MB 【题目描述】 MLE: 找规律: 阅读全文
摘要:
#include<iostream>#include<cstdio>#include<algorithm>#include<cstring>#include<string>#include<cmath>#include<map> using namespace std; int n,m;string 阅读全文
摘要:
题目背景 题目背景 题目背景 题目名称是吸引你点进来的 实际上该题还是很水的 题目描述 区间质数个数 输入输出格式 输入格式: 一行两个整数 询问次数n,范围m 接下来n行,每行两个整数 l,r 表示区间 输出格式: 对于每次询问输出个数 t,如l或r∉[1,m]输出 Crossing the li 阅读全文
摘要:
1.二叉排序树 二叉排序树(Binary Sort Tree)又称二叉查找树(Binary Search Tree),亦称二叉搜索树。 定义: 二叉排序树或者是一棵空树,或者是具有下列性质的二叉树: (1)若左子树不空,则左子树上所有结点的值均小于它的根结点的值; (2)若右子树不空,则右子树上所有 阅读全文