結果
問題 | No.92 逃走経路 |
ユーザー | matsukin1111 |
提出日時 | 2019-04-04 22:20:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 6 ms / 5,000 ms |
コード長 | 1,206 bytes |
コンパイル時間 | 762 ms |
コンパイル使用メモリ | 88,740 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-08 01:30:11 |
合計ジャッジ時間 | 1,550 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 5 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | AC | 5 ms
5,376 KB |
testcase_12 | AC | 5 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 4 ms
5,376 KB |
testcase_17 | AC | 6 ms
5,376 KB |
testcase_18 | AC | 4 ms
5,376 KB |
testcase_19 | AC | 4 ms
5,376 KB |
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include <cstdlib> #include <cmath> #include<cctype> #include<string> #include<set> #include <map> #include<algorithm> #include <functional> #include<vector> #include<climits> #include<stack> #include<queue> #include <deque> #include <climits> #include <typeinfo> #include <utility> #define all(x) (x).begin(),(x).end() #define rep(i,m,n) for(int i = m;i < n;++i) #define pb push_back #define fore(i,a) for(auto &i:a) #define rrep(i,m,n) for(int i = m;i >= n;--i) #define INF INT_MAX/2 using namespace std; using ll = long long; using R = double; const ll MOD = 1e9 + 7; const ll inf = 1LL << 50; struct edge { ll from; ll to; ll cost; }; int p[1010][110]; int a[1010], b[1010], c[1010], d[1010]; int main(){ int n, m, k; cin >> n >> m >> k; rep(i,0,m) { cin >> a[i] >> b[i] >> c[i]; } rep(i, 0, k)cin >> d[i]; rep(i, 1, n+1)p[0][i] = 1; rep(i, 1, k+1)rep(j,0,m) { if (d[i-1] == c[j]) { if (p[i - 1][a[j]])p[i][b[j]] = 1; if (p[i - 1][b[j]])p[i][a[j]] = 1; } } int ans = 0; rep(i, 1, n+1)ans += p[k][i]; cout << ans << endl; rep(i, 1, n+1) { if (p[k][i]) { cout << i << " "; } } cout << endl; return 0; }