結果
問題 | No.92 逃走経路 |
ユーザー | Ronlynes |
提出日時 | 2017-08-22 18:29:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,097 bytes |
コンパイル時間 | 430 ms |
コンパイル使用メモリ | 55,640 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-15 04:24:38 |
合計ジャッジ時間 | 1,111 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 4 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 4 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:45:9: warning: ‘max’ may be used uninitialized in this function [-Wmaybe-uninitialized] 45 | if(i != max){ | ^~
ソースコード
#include <iostream> #include <numeric> using namespace std; int main(void){ int n, m, k; cin >> n >> m >> k; int A[1004], B[1004], C[1004], D[1004]; bool dp[1004][103]; for(int i=0; i<m; i++){ cin >> A[i] >> B[i] >> C[i]; } for(int i=0; i<k; i++){ cin >> D[i]; } for(int i=0;i<m;i++){ if(C[i] == D[0]){ dp[0][A[i]] = true; dp[0][B[i]] = true; } } for(int i=1; i<k; i++){ for(int j=0; j<m; j++){ if(C[j] == D[i]){ if(dp[i-1][A[j]]){ dp[i][B[j]] = true; } if(dp[i-1][B[j]]){ dp[i][A[j]] = true; } } } } int max; cout << accumulate(dp[k-1], dp[k-1]+101, 0) << endl; for(int i=1; i<=100; i++){ if(dp[k-1][i]){ max = i; } } for(int i=1; i<=100; i++){ if(dp[k-1][i]){ cout << i; } if(i != max){ cout << " "; } } cout << endl; return 0; }