C++の練習を兼ねて, AtCoder Grand Contest 014 の 問題A (Cookie Exchanges) ~ 問題B (Unplanned Queries) を解いてみた.
■感想.
1. 問題B は, 方針が見えなかったので, 解説を参照して実装したところ, 何とか, AC版となった.
2. 時間を見つけて, 引き続き, 過去問を振り返っていきたいと思う.
本家のサイトAGC 014 解説をご覧下さい.
■C++版プログラム(問題A/AC版).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
#include <bits/stdc++.h> using namespace std; int main(){ // 1. 入力情報. int A, B, C; scanf("%d %d %d", &A, &B, &C); // 2. クッキーの交換回数を計算. function<int(int, int, int, int)> f = [&](int a, int b, int c, int d) { if((a & 1) || (b & 1) || (c & 1)) return d; int na = b / 2 + c / 2; int nb = c / 2 + a / 2; int nc = a / 2 + b / 2; if(na == a && nb == b && nc == c) return -1; return f(na, nb, nc, ++d); }; int ans = f(A, B, C, 0); // 3. 出力. printf("%d\n", ans); return 0; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
[入力例] 4 12 20 [出力例] 3 ※AtCoderテストケースより [入力例] 14 14 14 [出力例] -1 ※AtCoderテストケースより [入力例] 454 414 444 [出力例] 1 ※AtCoderテストケースより [入力例] 4194304 2097152 1048576 [出力例] 20 [入力例] 67108864 67108864 33554432 [出力例] 25 |
■C++版プログラム(問題B/AC版).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
// 解き直し. // https://img.atcoder.jp/agc014/editorial.pdf #include <bits/stdc++.h> using namespace std; #define repex(i, a, b, c) for(int i = a; i < b; i += c) #define repx(i, a, b) repex(i, a, b, 1) #define rep(i, n) repx(i, 0, n) #define repr(i, a, b) for(int i = a; i >= b; i--) int u[101010]; int main(){ // 1. 入力情報. int N, M; scanf("%d %d", &N, &M); rep(i, M){ int x, y; scanf("%d %d", &x, &y); u[x]++; u[y]++; } // 2. クエリ の a[i], b[i] の 出現回数をチェック. bool ans = true; repx(i, 1, N + 1){ if(u[i] & 1){ ans = false; break; } } // 3. 出力. // repx(i, 1, N + 1) printf("%d\n", u[i]); printf("%s\n", ans ? "YES" : "NO"); return 0; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
[入力例] 4 4 1 2 2 4 1 3 3 4 [出力例] YES ※AtCoderテストケースより [入力例] 5 5 1 2 3 5 5 1 3 4 2 3 [出力例] NO ※AtCoderテストケースより [入力例] 10 13 1 2 2 3 5 4 4 8 4 3 4 7 5 7 7 3 7 9 6 9 10 6 10 1 3 8 [出力例] YES |
■参照サイト
AtCoder Grand Contest 014