結果
問題 | No.859 路線A、路線B、路線C |
ユーザー | erbowl |
提出日時 | 2020-04-25 23:29:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,322 bytes |
コンパイル時間 | 2,274 ms |
コンパイル使用メモリ | 203,924 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-11-08 02:03:09 |
合計ジャッジ時間 | 3,043 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,248 KB |
ソースコード
typedef long long ll; #include <bits/stdc++.h> using namespace std; int main() { vector<ll> dis(3); for (int i = 0; i < 3; i++) { std::cin >> dis[i]; } pair<ll,ll> start,end; char t1,t2; ll tt1,tt2; std::cin >> t1>>tt1; std::cin >> t2>>tt2; start = {t1-'A',tt1}; end = {t2-'A',tt2}; if(start.first==end.first){ std::cout << min({ abs(start.second-end.second), min(start.second,dis[start.first]-start.second)+ min(end.second,dis[end.first]-end.second)+ min(dis[(start.first+1)%3],dis[(start.first+2)%3]), start.second+end.second-dis[start.first]+ min(dis[(start.first+1)%3],dis[(start.first+2)%3]) }) << std::endl; }else{ std::cout << min({ start.second+ end.second, dis[start.first]-start.second+1+ dis[end.first]-end.second, start.second+ dis[3-start.first-end.first]+ dis[end.first]-end.second, dis[start.first]-start.second+ dis[3-start.first-end.first]+ end.second }) << std::endl; } }