#include#includeusing namespace std;const int maxn=1000+10;struct Homework{ long long st; long long len;}h[maxn];int n;bool cmp(const Homework&a...
分类:
移动开发 时间:
2015-12-26 13:25:13
阅读次数:
301
#include#include#include#include#includeusing namespace std;int main(){ int T; scanf("%d",&T); while(T--) { int x; for(int i...
分类:
其他好文 时间:
2015-12-26 13:23:02
阅读次数:
232
#include #define _(l) int l#define ___(l,L) for (_(o)=0,x=l o*2;o<x;o++)O= L o;#define __ _ ( _ )const __=0x80000000;_(main)(){ int T; scanf("%d...
分类:
其他好文 时间:
2015-12-26 13:21:08
阅读次数:
185
二进制++高精度取模#include#include#includeusing namespace std;const int maxn=100;long long a[maxn];long long sumA[maxn];int aa,bb;int len;long long n;int Base...
分类:
其他好文 时间:
2015-12-26 13:08:52
阅读次数:
135
题目:GCD SUM题目链接:http://www.bnuoj.com/v3/problem_show.php?pid=39872算法:莫比乌斯反演、优化 1 #include 2 #define N 100001 3 typedef long long LL; 4 bool pri[N]={0};...
分类:
其他好文 时间:
2015-12-17 00:34:21
阅读次数:
239
Story of Tomisu GhostIt is now 2150 AD and problem-setters are having a horrified time as the ghost of a problem-setter from the past, Mr. Tomisu, is ...
分类:
其他好文 时间:
2015-11-20 17:16:36
阅读次数:
161
Dice (I)You haveNdices; each of them hasKfaces numbered from1toK. Now you have arranged theNdices in a line. You can rotate/flip any dice if you want....
分类:
其他好文 时间:
2015-10-25 17:56:52
阅读次数:
186
题目链接: http://acm.bnu.edu.cn/v3/problem_show.php?pid=24251 给定1~N, 1~M的编号作为男女的编号 给定Q个查询,每个查询给出一个数字qnum,求出所有男女编号相加等于qnum的组合的情况 最大的组合情况就是N/M中最小的那个数 找...
分类:
其他好文 时间:
2015-10-07 14:46:17
阅读次数:
119
题目链接:http://acm.bnu.edu.cn/v3/problem_show.php?pid=39572题目详细分析:http://talk.icpc-camp.org/d/127-jag-summer-2012-day-4-j-usoperanto对于这个题目,自己的一点补充(bfs 拓扑...
分类:
编程语言 时间:
2015-10-04 00:25:53
阅读次数:
271
Usoperanto Problem's Link Mean:给定n个单词,每个单词可以作为形容词来修饰其他单词.如果当前单词Wi修饰Wj,那么这个修饰的代价是:Wi~Wj之间的单词的总长度.你需要按照给定的修饰关系来安排单词的顺序,使得所有修饰代价的和最小. analyse:比...
分类:
其他好文 时间:
2015-10-03 18:12:53
阅读次数:
209