C++の練習を兼ねて, AtCoder Beginner Contest 278 の 問題C (FF) ~ 問題D (All Assign Point Add) を解いてみた.
■感想.
1. 問題C, D は, 方針を絞り込めたので, AC版に到達出来たと思う.
2. 引き続き, 時間を見つけて, 過去問の学習を進めていきたいと思う.
本家のサイト AtCoder Beginner Contest 278 解説 の 各リンク を ご覧下さい.
■C++版プログラム(問題C/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 |
// C++(GCC 9.2.1) #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 main(){ // 1. 入力情報. int N, Q; scanf("%d %d", &N, &Q); // 2. クエリ回答. map<int, set<int>> sns; rep(i, Q){ int t, a, b; scanf("%d %d %d", &t, &a, &b); // クエリ 1. if(t == 1) sns[a].insert(b); // クエリ 2. if(t == 2) sns[a].erase(b); // クエリ 3. if(t == 3){ if(sns[a].count(b) && sns[b].count(a)) puts("Yes"); else puts("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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
[入力例] 3 9 1 1 2 3 1 2 1 2 1 3 1 2 1 2 3 1 3 2 3 1 3 2 1 2 3 1 2 [出力例] No Yes No No ※AtCoderテストケースより [入力例] 2 8 1 1 2 1 2 1 3 1 2 1 1 2 1 1 2 1 1 2 2 1 2 3 1 2 [出力例] Yes No ※AtCoderテストケースより [入力例] 10 30 3 1 6 3 5 4 1 6 1 3 1 7 3 8 4 1 1 6 2 4 3 1 6 5 1 5 6 1 1 8 1 8 1 2 3 10 1 7 6 3 5 6 1 6 7 3 6 7 1 9 5 3 8 6 3 3 8 2 6 9 1 7 1 3 10 8 2 9 2 1 10 9 2 6 10 2 6 8 3 1 6 3 1 8 2 8 5 1 9 10 [出力例] No No No No Yes Yes No No No Yes Yes ※AtCoderテストケースより |
■C++版プログラム(問題D/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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
// C++(GCC 9.2.1) #include <bits/stdc++.h> using namespace std; using LL = long long; #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--) LL a[202020][2]; int main(){ // 1. 入力情報. int N; scanf("%d", &N); rep(i, N) scanf("%lld", &a[i][0]); rep(i, N) a[i][1] = -1; // 2. クエリ回答. int Q; scanf("%d", &Q); int qIdx = -1; LL xQ1 = 0; rep(q, Q){ int t; scanf("%d", &t); // クエリ 1. if(t == 1){ LL x; scanf("%lld", &x); qIdx = q; xQ1 = x; } // クエリ 2. if(t == 2){ int i; LL x; scanf("%d %lld", &i, &x); --i; if(a[i][1] != qIdx){ a[i][1] = qIdx; a[i][0] = xQ1; } a[i][0] += x; } // クエリ 3. if(t == 3){ int i; scanf("%d", &i); --i; printf("%lld\n", (a[i][1] != qIdx) ? xQ1 : a[i][0]); } } 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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
[入力例] 5 3 1 4 1 5 6 3 2 2 3 4 3 3 1 1 2 3 4 3 3 [出力例] 1 8 5 ※AtCoderテストケースより [入力例] 1 1000000000 8 2 1 1000000000 2 1 1000000000 2 1 1000000000 2 1 1000000000 2 1 1000000000 2 1 1000000000 2 1 1000000000 3 1 [出力例] 8000000000 ※AtCoderテストケースより [入力例] 10 1 8 4 15 7 5 7 5 8 0 20 2 7 0 3 7 3 8 1 7 3 3 2 4 4 2 4 9 2 10 5 1 10 2 4 2 1 10 2 3 1 2 8 11 2 3 14 2 1 9 3 8 3 8 3 1 2 6 5 3 7 [出力例] 7 5 7 21 21 19 10 ※AtCoderテストケースより [入力例] 20 121 82 60 94 22 38 121 105 58 77 111 67 26 33 97 1 55 63 9 122 32 2 3 6 3 3 3 10 2 2 6 2 15 2 3 2 3 15 3 11 2 15 21 3 15 1 10 3 1 2 6 1 2 7 2 2 8 3 2 9 4 2 10 5 3 7 2 7 6 2 8 7 2 9 8 2 10 9 2 11 10 3 7 3 11 2 8 11 2 9 12 2 10 13 2 11 14 2 12 15 3 8 3 12 [出力例] 66 77 88 99 111 120 10 12 18 20 31 25 |
■参照サイト
AtCoder Beginner Contest 278