結果
問題 | No.1301 Strange Graph Shortest Path |
ユーザー | publfl |
提出日時 | 2020-11-27 22:33:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,502 bytes |
コンパイル時間 | 974 ms |
コンパイル使用メモリ | 71,036 KB |
実行使用メモリ | 34,880 KB |
最終ジャッジ日時 | 2024-07-26 19:55:00 |
合計ジャッジ時間 | 18,431 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 387 ms
29,056 KB |
testcase_04 | AC | 588 ms
34,624 KB |
testcase_05 | AC | 409 ms
32,704 KB |
testcase_06 | AC | 489 ms
32,128 KB |
testcase_07 | AC | 469 ms
31,832 KB |
testcase_08 | AC | 374 ms
29,396 KB |
testcase_09 | AC | 465 ms
30,976 KB |
testcase_10 | WA | - |
testcase_11 | AC | 499 ms
32,768 KB |
testcase_12 | AC | 533 ms
33,220 KB |
testcase_13 | AC | 475 ms
33,036 KB |
testcase_14 | AC | 473 ms
30,464 KB |
testcase_15 | AC | 466 ms
30,640 KB |
testcase_16 | AC | 577 ms
34,752 KB |
testcase_17 | AC | 520 ms
33,312 KB |
testcase_18 | AC | 447 ms
30,848 KB |
testcase_19 | AC | 511 ms
32,512 KB |
testcase_20 | AC | 526 ms
32,220 KB |
testcase_21 | AC | 501 ms
32,768 KB |
testcase_22 | AC | 643 ms
33,032 KB |
testcase_23 | AC | 485 ms
33,020 KB |
testcase_24 | AC | 521 ms
32,708 KB |
testcase_25 | AC | 546 ms
34,284 KB |
testcase_26 | AC | 468 ms
31,872 KB |
testcase_27 | AC | 483 ms
32,620 KB |
testcase_28 | AC | 403 ms
31,276 KB |
testcase_29 | WA | - |
testcase_30 | AC | 532 ms
33,664 KB |
testcase_31 | AC | 543 ms
33,920 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 587 ms
33,996 KB |
ソースコード
#include <stdio.h> #include <vector> #include <map> #include <queue> std::vector<int> V[100010]; std::map< std::pair<int,int> , int > M,M2; std::priority_queue< std::pair<long long int,int> , std::vector< std::pair<long long int,int> > , std::greater< std::pair<long long int, int > > > Q; long long int dist[100010]; int prev[100010]; long long int MAX = 1; int a; long long int func(int start, int end) { for(int i=1;i<=a;i++) dist[i] = MAX; Q.push(std::make_pair(0,start)); dist[start] = 0; while(!Q.empty()) { long long int S = Q.top().first; int t = Q.top().second; Q.pop(); if(dist[t]!=S) continue; for(int i=0;i<V[t].size();i++) { if(dist[V[t][i]]>S+M[std::make_pair(t,V[t][i])]) { dist[V[t][i]] = S+M[std::make_pair(t,V[t][i])]; prev[V[t][i]] = t; Q.push(std::make_pair(S+M[std::make_pair(t,V[t][i])],V[t][i])); } } } int p = end; while(p!=start) { M[std::make_pair(p,prev[p])] = M2[std::make_pair(p,prev[p])]; M[std::make_pair(prev[p],p)] = M2[std::make_pair(p,prev[p])]; p = prev[p]; if(p==0) break; } return dist[end]; } int main() { for(int i=1;i<=15;i++) MAX*=10; int b; scanf("%d%d",&a,&b); for(int i=1;i<=b;i++) { int c,d,e,f; scanf("%d%d%d%d",&c,&d,&e,&f); V[c].push_back(d); V[d].push_back(c); M[std::make_pair(c,d)] = e; M[std::make_pair(d,c)] = e; M2[std::make_pair(c,d)] = f; M2[std::make_pair(d,c)] = f; } long long int S1 = func(1,a); long long int S2 = func(a,1); printf("%lld",S1+S2); }