結果
問題 | No.160 最短経路のうち辞書順最小 |
ユーザー | latte0119 |
提出日時 | 2015-03-02 00:53:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 832 bytes |
コンパイル時間 | 273 ms |
コンパイル使用メモリ | 39,484 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 00:53:08 |
合計ジャッジ時間 | 1,462 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 10 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 10 ms
6,944 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 9 ms
6,940 KB |
testcase_28 | AC | 13 ms
6,940 KB |
testcase_29 | AC | 9 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:9:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | scanf("%d%d%d%d",&n,&m,&s,&g); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:15:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%d%d%d",&a,&b,&c); | ~~~~~^~~~~~~~~~~~~~~~~~~
ソースコード
#include<cstdio> #include<algorithm> #include<vector> using namespace std; int n,m,s,g; int mat[300][300]; bool flag[300][300]; int main(){ scanf("%d%d%d%d",&n,&m,&s,&g); fill_n(*mat,300*300,1<<25); fill_n(*flag,300*300,false); for(int i=0;i<n;i++)mat[i][i]=0; while(m--){ int a,b,c; scanf("%d%d%d",&a,&b,&c); mat[a][b]=mat[b][a]=c; flag[a][b]=flag[b][a]=true; } for(int k=0;k<n;k++){ for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ mat[i][j]=min(mat[i][j],mat[i][k]+mat[k][j]); } } } printf("%d",s); while(s!=g){ for(int i=0;i<n;i++){ if(mat[s][i]+mat[i][g]==mat[s][g]&&flag[s][i]){ printf(" %d",s=i); break; } } } puts(""); }