C++の練習を兼ねて, AtCoder Regular Contest 137 の 問題A (Coprime Pair) ~ 問題B (Count 1’s) を解いてみた.
■感想.
1. 問題A, Bは, 方針が見えなかったので, 解説を参考に, AC版に到達できたと思う.
2. 引き続き, 時間を見つけて, 過去問の学習を進めていきたいと思う.
本家のサイト AtCoder Regular Contest 137 解説 の 各リンク を ご覧下さい.
■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 26 27 28 29 30 31 32 |
// 解き直し. // https://atcoder.jp/contests/arc137/editorial/3592 // 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--) int main(){ // 1. 入力情報. LL L, R; scanf("%lld %lld", &L, &R); // 2. y - x の 最大値は? // 01-007.txt などで, WA版だったので, 修正. LL ans = 0, x = L, y = R; rep(i, 1501){ rep(j, 1501){ if(y - j <= 0 || (y - j <= x + i)) continue; if(__gcd(x + i, y - j) == 1) ans = max(ans, y - j - x - i); } } // 3. 出力. printf("%lld\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 |
[入力例] 2 4 [出力例] 1 ※AtCoderのテストケースより [入力例] 14 21 [出力例] 5 ※AtCoderのテストケースより [入力例] 1 100 [出力例] 99 ※AtCoderのテストケースより [入力例] 123 456 [出力例] 332 [入力例] 12345 67890 [出力例] 55544 |
■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 38 39 40 41 42 43 44 45 |
// 解き直し. // https://atcoder.jp/contests/arc137/editorial/3591 // 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 a[303030], b[303030], c[303030]; int main(){ // 1. 入力情報. int N; scanf("%d", &N); rep(i, N) scanf("%d", &a[i]); // 2. 0, 1 の 出現数確認. // -> 01-001.txt などで, WA版となったのでロジック修正. int cnt10 = 0; // (1 の 個数) - (0 の 個数) の 最大値. int cnt01 = 0; // (0 の 個数) - (1 の 個数) の 最大値. rep(i, N){ // 1 の 場合. if(a[i]){ b[i + 1] = max(b[i] + 1, 1); c[i + 1] = max(c[i] - 1, -1); } // 0 の 場合. if(!a[i]){ b[i + 1] = max(b[i] - 1, -1); c[i + 1] = max(c[i] + 1, 1); } // 最大値更新. cnt10 = max(cnt10, b[i + 1]); cnt01 = max(cnt01, c[i + 1]); } // 3. 出力. printf("%d\n", cnt10 + cnt01 + 1); 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 |
[入力例] 4 0 1 1 0 [出力例] 4 ※AtCoderのテストケースより [入力例] 5 0 0 0 0 0 [出力例] 6 ※AtCoderのテストケースより [入力例] 6 0 1 0 1 0 1 [出力例] 3 ※AtCoderのテストケースより [入力例] 1 1 [出力例] 2 [入力例] 11 0 0 1 0 1 0 1 0 1 1 0 [出力例] 5 [入力例] 100 0 1 1 0 0 0 1 0 1 1 1 1 0 0 1 1 0 1 0 1 1 0 0 0 1 1 1 0 0 0 1 0 1 1 0 0 0 1 0 0 1 1 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 1 0 0 1 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 1 1 0 1 1 1 0 0 1 0 1 1 0 0 0 1 1 1 1 0 0 [出力例] 18 |
■参照サイト
AtCoder Regular Contest 137