C++の練習を兼ねて, AtCoder Beginner Contest 259 の 問題C (XX to XXX) ~ 問題D (Circumferences) を解いてみた.
■感想.
1. 問題C, Dは, 方針を絞り込めたので, AC版に到達できたと思う.
2. 個人的には, 問題Dで, 幅優先探索の復習が出来たので, 非常に良かったと思う.
3. 引き続き, 時間を見つけて, 過去問の学習を進めていきたいと思う.
本家のサイト AtCoder Beginner Contest 259 解説 の 各リンク を ご覧下さい.
■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 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 |
// C++(GCC 9.2.1) #include <bits/stdc++.h> using namespace std; using P = pair<char, int>; using vp = vector<P>; #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--) #define pb push_back #define a first #define b second int main(){ // 1. 入力情報. char s[202020], t[202020]; scanf("%s %s", s, t); string S(s), T(t); // 2. 番兵. S.pb('#'); T.pb('#'); // 3. 各文字の連続出現数. // 3-1. 文字列 S. vp vs; int c = 1; rep(i, S.size() - 1){ // 今回, 次回が同じ. if(S[i] == S[i + 1]){ ++c; continue; } // 今回, 次回が異なる. vs.pb({S[i], c}); c = 1; } // 3-2. 文字列 T. vp vt; c = 1; rep(i, T.size() - 1){ // 今回, 次回が同じ. if(T[i] == T[i + 1]){ ++c; continue; } // 今回, 次回が異なる. vt.pb({T[i], c}); c = 1; } // 4. 例外. if(vs.size() != vt.size()){ puts("No"); return 0; } // 5. 判定. bool ok = true; rep(i, vs.size()){ P sCur = vs[i]; P tCur = vt[i]; // 評価対象の文字. if(sCur.a != tCur.a){ ok = false; continue; } // 出現回数の評価(その①). if((sCur.b == 1) && (tCur.b > 1)){ ok = false; continue; } // 出現回数の評価(その②). if(sCur.b > tCur.b) ok = false; } // 6. 出力. printf("%s\n", ok ? "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 |
[入力例] abbaac abbbbaaac [出力例] Yes ※AtCoderテストケースより [入力例] xyzz xyyzz [出力例] No ※AtCoderテストケースより [入力例] mwqyvmhoful mwqyvmhoful [出力例] Yes [入力例] aabbbcccc bbbaacccc [出力例] No [入力例] aabbbccccdeefff aaabbbbcccccdeeeeefffffff [出力例] Yes |
■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 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 |
// C++(GCC 9.2.1) #include <bits/stdc++.h> using namespace std; using LL = long long; using T3 = tuple<LL, LL, LL>; using vt = vector<T3>; using vi = vector<int>; using vvi = vector<vi>; #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--) #define pb push_back const LL INF = 2e18 + 1; int main(){ // 1. 入力情報. int N; LL sx, sy, tx, ty; scanf("%d %lld %lld %lld %lld", &N, &sx, &sy, &tx, &ty); vt v; int s = -1, t = -1; rep(i, N){ LL x, y, r; scanf("%lld %lld %lld", &x, &y, &r); v.emplace_back(x, y, r); if(s == -1 && (sx - x) * (sx - x) + (sy - y) * (sy - y) == r * r) s = i; if(t == -1 && (tx - x) * (tx - x) + (ty - y) * (ty - y) == r * r) t = i; } assert(s != -1 && t != -1); // 2. グラフ作成. vvi G(N); rep(i, N){ repx(j, i + 1, N){ // 円 i. LL xi = get<0>(v[i]); LL yi = get<1>(v[i]); LL ri = get<2>(v[i]); // 円 j. LL xj = get<0>(v[j]); LL yj = get<1>(v[j]); LL rj = get<2>(v[j]); // 円 i と 円 j が 交点を持つか? LL dij = (xi - xj) * (xi - xj) + (yi - yj) * (yi - yj); if(dij >= (ri - rj) * (ri - rj) && dij <= (ri + rj) * (ri + rj)){ G[i].pb(j); G[j].pb(i); } } } // 3. bfs. // https://ja.wikipedia.org/wiki/幅優先探索 auto bfs = [&](vvi &G, int s, LL* d) { // 空のキュー. queue<int> q; // 開始地点は, 距離ゼロ. d[s] = 0; // 探索地点 s をキュー q に追加. q.push(s); while(!q.empty()){ // キューから取り出す. int u = q.front(); q.pop(); // 隣接頂点をチェック. for(auto &e : G[u]) if(d[e] == INF && e != s) d[e] = d[u] + 1, q.push(e); } }; LL d[N]; rep(i, N) d[i] = INF; bfs(G, s, d); // 4. 出力. printf("%s\n", (d[t] == INF) ? "No" : "Yes"); 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 |
[入力例] 4 0 -2 3 3 0 0 2 2 0 2 2 3 1 -3 3 3 [出力例] Yes ※AtCoderテストケースより [入力例] 3 0 1 0 3 0 0 1 0 0 2 0 0 3 [出力例] No ※AtCoderテストケースより [入力例] 5 0 -6 9 3 0 -3 3 -3 0 3 -6 3 3 3 0 3 6 3 3 [出力例] Yes [入力例] 10 5 0 6 8 0 0 5 0 6 3 0 -6 3 6 0 3 -6 0 3 0 9 1 0 -9 1 9 0 1 -9 0 1 0 0 10 [出力例] Yes |
■参照サイト
AtCoder Beginner Contest 259