C++の練習を兼ねて, AtCoder Regular Contest 050 の 問題A (大文字と小文字) ~ 問題B (花束) を解いてみた.
■感想.
1. 問題B は, 方針が見えなかったので, 解説を参考に, ようやくAC版となった.
2. 二分探索の復習が出来たので, 非常に良かったと思う.
3. 時間を見つけて, 引き続き, 過去問を振り返っていきたいと思う.
本家のサイトAtCoder Regular Contest 050 解説をご覧下さい.
■C++版プログラム(問題A/AC版).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
// C++(GCC 9.2.1) #include <bits/stdc++.h> using namespace std; int main(){ // 1. 入力情報. char C[11], c[11]; scanf("%s %s", C, c); // 2. 出力. printf("%s\n", (c[0] - C[0] == 32) ? "Yes" : "No"); return 0; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
[入力例] A a [出力例] Yes ※AtCoderのテストケースより [入力例] B c [出力例] No ※AtCoderのテストケースより [入力例] Z z [出力例] Yes ※AtCoderのテストケースより |
■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/data/arc/050/review.pdf // 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 R, B, x, y; scanf("%lld %lld %lld %lld", &R, &B, &x, &y); // 2. 花束の個数の最大値は? LL l = 0, h = min(R, B) + 1, m; auto f = [](LL m, LL R, LL B, LL x, LL y) -> bool { LL r = (R - m) / (x - 1); LL b = (B - m) / (y - 1); return (r + b >= m); }; // 二分探索で確認してみる. while(l + 1 < h){ m = (h + l) >> 1; if(f(m, R, B, x, y)) l = m; else h = m; // printf("h=%lld l=%lld m=%lld\n", h, l, m); } // 3. 出力. printf("%lld\n", l); 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 |
[入力例] 5 5 3 4 [出力例] 2 ※AtCoderのテストケースより [入力例] 10 20 2 2 [出力例] 10 ※AtCoderのテストケースより [入力例] 1 1 2 2 [出力例] 0 ※AtCoderのテストケースより [入力例] 10000000000 10000000000 4 3 [出力例] 4545454545 ※AtCoderのテストケースより [入力例] 31415926535897932 38462643383279502 88419 71693 [出力例] 891787311937 [入力例] 1414213562 37309504880 16887 24209 [出力例] 1624792 |
■参照サイト
AtCoder Regular Contest 050