結果
問題 | No.92 逃走経路 |
ユーザー | ldsyb |
提出日時 | 2017-09-18 03:23:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 119 ms / 5,000 ms |
コード長 | 787 bytes |
コンパイル時間 | 661 ms |
コンパイル使用メモリ | 67,324 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 02:09:10 |
合計ジャッジ時間 | 1,962 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 73 ms
5,248 KB |
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 | 6 ms
5,248 KB |
testcase_06 | AC | 7 ms
5,248 KB |
testcase_07 | AC | 6 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 10 ms
5,248 KB |
testcase_10 | AC | 63 ms
5,248 KB |
testcase_11 | AC | 67 ms
5,248 KB |
testcase_12 | AC | 119 ms
5,248 KB |
testcase_13 | AC | 4 ms
5,248 KB |
testcase_14 | AC | 12 ms
5,248 KB |
testcase_15 | AC | 31 ms
5,248 KB |
testcase_16 | AC | 35 ms
5,248 KB |
testcase_17 | AC | 66 ms
5,248 KB |
testcase_18 | AC | 44 ms
5,248 KB |
testcase_19 | AC | 27 ms
5,248 KB |
ソースコード
#include <iostream> using namespace std; int main(){ int n, m, k; cin >> n >> m >> k; int a[m], b[m], c[m], d[k]; for(int i = 0; i < m; i++){ cin >> a[i] >> b[i] >> c[i]; a[i]--; b[i]--; } for(int &i:d) cin >> i; bool dp[2][n]; for(int i = 0; i < n; i++) dp[0][i] = true; for(int i = 0; i < k; i++){ int now = i % 2, next = 1 ^ now; for(int j = 0; j < n; j++) dp[next][j] = false; for(int j = 0; j < n; j++) if(dp[now][j]){ for(int l = 0; l < m; l++){ if((a[l] == j || b[l] == j) && c[l] == d[i]){ int to = a[l] == j ? b[l] : a[l]; dp[next][to] = true; } } } } int count = 0; for(int i = 0; i < n; i++) if(dp[k % 2][i]) count++; cout << count << endl; for(int i = 0; i < n; i++) if(dp[k % 2][i]) cout << i + 1 << ' '; cout << endl; }