結果
問題 | No.859 路線A、路線B、路線C |
ユーザー | sumochiP |
提出日時 | 2019-08-09 22:43:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,354 bytes |
コンパイル時間 | 1,725 ms |
コンパイル使用メモリ | 166,896 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 14:47:44 |
合計ジャッジ時間 | 2,402 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'lint abc_to_xyz(lint, lint, lint, std::string)': main.cpp:27:1: warning: control reaches end of non-void function [-Wreturn-type] 27 | } | ^
ソースコード
#include <bits/stdc++.h> using namespace std; using lint = long long int; using pint = pair<int, int>; using plint = pair<lint, lint>; #define ALL(x) (x).begin(), (x).end() #define SZ(x) ((lint)(x).size()) #define POW2(n) (1LL << (n)) #define FOR(i, begin, end) for (int i = (begin), i##_end_ = (end); i < i##_end_; i++) #define IFOR(i, begin, end) for (int i = (end)-1, i##_begin_ = (begin); i >= i##_begin_; i--) #define REP(i, n) FOR(i, 0, n) #define IREP(i, n) IFOR(i, 0, n) #ifdef LOCAL #define eprintf(...) fprintf(stderr, __VA_ARGS__) #else #define eprintf(...) 42 #endif lint abc_to_xyz(lint x,lint y,lint z,string abc){ if(abc=="A") return x; if (abc == "B") return y; if (abc == "C") return z; } int main() { lint x, y,z; cin >> x >> y >> z; lint ans, tmp; string s0, s1; lint t0, t1; cin >> s0 >> t0; cin >> s1 >> t1; lint i = t0; lint j = t1; lint s = abc_to_xyz(x, y, z, s0); //スタート路線の長さ lint g = abc_to_xyz(x, y, z, s1); //ゴール路線の長さ lint l = i - 1, r = s - i; lint goleft = min(l, r + min(min(x,y),z)); lint goright = min(r, l + min(min(x, y), z)); ans = min(goleft + j, goright + g - j + 1); if (s0 == s1) { ans = abs(j - i); } cout << ans << "\n"; return 0; }