2013年9月4日

Codeforces Round #102 (Div. 2) //缺E

摘要: -----------------------A. Help Vasilisa the Wise 2---暴力枚举---#include using namespace std;int r1,r2,c1,c2,d1,d2;int a[2][2];bool solve(){ if (a[0][0]+a[0][1]!=r1) return false; if (a[1][0]+a[1][1]!=r2) return false; if (a[0][0]+a[1][0]!=c1) return false; if (a[0][1]+a[1][1]!=c2) return fa... 阅读全文

posted @ 2013-09-04 19:50 电子幼体 阅读(142) 评论(0) 推荐(0) 编辑

Codeforces Round #101 (Div. 2)

摘要: --------------A. Amusing Joke--前两行的字母恰好组成最后一行--#include #include using namespace std;char a[1111];int ch[26]={0};int main(){ cin>>a; for (int i=0;a[i];i++){ ch[a[i]-'A']++; } cin>>a; for (int i=0;a[i];i++){ ch[a[i]-'A']++; } cin>>a; for (int i=0;a[i];i++){ ... 阅读全文

posted @ 2013-09-04 16:13 电子幼体 阅读(201) 评论(0) 推荐(0) 编辑

导航