結果
問題 | No.859 路線A、路線B、路線C |
ユーザー | sprng_wl |
提出日時 | 2019-08-09 22:01:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 602 bytes |
コンパイル時間 | 1,092 ms |
コンパイル使用メモリ | 160,140 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-19 11:50:51 |
合計ジャッジ時間 | 1,621 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:26:36: warning: ‘s2’ may be used uninitialized in this function [-Wmaybe-uninitialized] 26 | ans = min({ans, l0 + d[int(s2 - 'A')] + r1, r0 + d[int(s2 - 'A')] + l1}); | ^~
ソースコード
#include <bits/stdc++.h> #define Int int64_t using namespace std; int main() { Int d[3]; for (int i = 0; i < 3; ++i) { cin >> d[i]; } char s0, s1; Int t0, t1; cin >> s0 >> t0; cin >> s1 >> t1; if (s0 == s1) { cout << abs(t0 - t1) << endl; return 0; } char s2; for (char i = 'A'; i <= 'C'; ++i) { if (i != s0 && i != s1) { s2 = i; } } Int l0 = t0, r0 = abs(d[int(s0 - 'A')] - t0) + 1; Int l1 = t1 - 1, r1 = abs(d[int(s1 - 'A')] - t1); Int ans = min(l0 + l1, r0 + r1); ans = min({ans, l0 + d[int(s2 - 'A')] + r1, r0 + d[int(s2 - 'A')] + l1}); cout << ans << endl; return 0; }