摘要:
http://codeforces.com/contest/355/problem/B 1 #include 2 #include 3 #include 4 using namespace std; 5 int a[1001],b[1001]; 6 int c1,c2,c3,c4; 7 int... 阅读全文
摘要:
http://codeforces.com/contest/353/problem/D 1 #include 2 #include 3 #include 4 #define maxn 10000010 5 using namespace std; 6 7 char str[maxn]; 8 ... 阅读全文
摘要:
http://codeforces.com/contest/353/problem/C先预处理前i个数的和,然后找到第一个出现的1,然后变成0后的和与目前的和比较,如果大就更新。 1 #include 2 #include 3 #include 4 #define maxn 100010 5 ... 阅读全文
摘要:
http://codeforces.com/contest/353/problem/B题意:要把2*n个两位数分成两部分,使得第一部分上的数和第二部分上的两位数组成四位数。求怎么分能使构成的不同的四位数个数最多如果2*n个数都是不同的,怎么分都一样的组成n*n个。如果有相同的,将它们按数量排序,均分... 阅读全文