首页 > 代码库 > Codeforces Round #246 (Div. 2)
Codeforces Round #246 (Div. 2)
A、Choosing Teams
水题
#include <cstdio> #include <cstring> using namespace std; int main() { int n, k, ans, i, x; scanf("%d%d",&n,&k); ans = 0; for(i=0; i<n; ++i) { scanf("%d",&x); if(5-x >= k) ans++; } ans /= 3; printf("%d\n", ans); return 0; }
B、Football Kit
水题
#include <cstdio> #include <cstring> #include <set> using namespace std; const int maxn = 100000 + 100; int x[maxn], y[maxn], tx[maxn]; int main() { int n, i, j; scanf("%d",&n); for(i=0; i<n; ++i) { scanf("%d%d",&x[i], &y[i]); tx[ x[i]] ++; } for(i=0; i<n; ++i) printf("%d %d\n", n-1 + tx[ y[i] ], n-1 - tx[ y[i] ]); return 0; }
C、Prime Swaps
D、Prefixes and Suffixes
E、Square Tiling
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。