結果
問題 | No.92 逃走経路 |
ユーザー | dnish |
提出日時 | 2017-07-07 10:13:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 845 bytes |
コンパイル時間 | 1,596 ms |
コンパイル使用メモリ | 173,208 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-06 09:52:37 |
合計ジャッジ時間 | 2,098 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 3 ms
6,820 KB |
testcase_07 | AC | 3 ms
6,820 KB |
testcase_08 | AC | 1 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> #define REP(i,n,N) for(int i=(n);i<(int) N;i++) #define F first #define S second using namespace std; vector<pair<int,int>> edge[110]; bool visit[2][110]; int d[1010]; int main() { int N,M,K; cin>>N>>M>>K; REP(i,0,M){ int a,b,c; cin>>a>>b>>c; a--;b--; edge[a].push_back({b,c}); edge[b].push_back({a,c}); } REP(i,0,K) cin>>d[i]; REP(i,0,N) visit[0][i]=true; REP(k,0,K){ int now=k%2; REP(i,0,N) visit[1-now][i]=false; REP(i,0,N){ if(visit[now][i]){ REP(j,0,edge[i].size()){ if(edge[i][j].S==d[k]) { visit[1-now][edge[i][j].F]=true; break; } } } } } cout<<count(visit[K%2],visit[K%2]+N,true)<<endl; bool flag=false; REP(i,0,N){ if(!visit[K%2][i]) continue; if(!flag) { cout<<i+1; flag=true; } else cout<<" "<<i+1; } cout<<endl; return 0; }