結果
問題 | No.2674 k-Walk on Bipartite |
ユーザー | tour2st |
提出日時 | 2024-03-15 23:12:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,020 bytes |
コンパイル時間 | 927 ms |
コンパイル使用メモリ | 98,216 KB |
実行使用メモリ | 16,256 KB |
最終ジャッジ日時 | 2024-09-30 02:45:12 |
合計ジャッジ時間 | 4,131 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
8,132 KB |
testcase_01 | WA | - |
testcase_02 | AC | 4 ms
8,192 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 137 ms
14,208 KB |
testcase_09 | AC | 87 ms
11,904 KB |
testcase_10 | AC | 172 ms
15,524 KB |
testcase_11 | AC | 102 ms
13,008 KB |
testcase_12 | AC | 168 ms
15,360 KB |
testcase_13 | AC | 81 ms
11,520 KB |
testcase_14 | AC | 20 ms
9,104 KB |
testcase_15 | WA | - |
testcase_16 | AC | 125 ms
13,476 KB |
testcase_17 | WA | - |
testcase_18 | AC | 49 ms
10,496 KB |
testcase_19 | AC | 106 ms
12,032 KB |
testcase_20 | AC | 88 ms
12,408 KB |
testcase_21 | WA | - |
testcase_22 | AC | 199 ms
16,240 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 3 ms
8,164 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 4 ms
8,192 KB |
testcase_31 | WA | - |
testcase_32 | AC | 4 ms
8,064 KB |
testcase_33 | AC | 5 ms
8,192 KB |
testcase_34 | WA | - |
testcase_35 | AC | 4 ms
8,064 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 4 ms
8,224 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <stack> #include <queue> #include <set> #include <map> #include <random> #include <time.h> #include <map> using namespace std; int n,m,s,t,k,a,b; vector<int>e[200000]; int length[200000]; bool visited[200000]; void dfs(int now, int len=0) { if(visited[now]) return; visited[now]=true; length[now]=len; for(int nxt:e[now]) dfs(nxt, len+1); } int main() { cin >> n >> m >> s >> t >> k; for(int i=0;i<m;i++) { cin >> a >> b; a--;b--; e[a].push_back(b); e[b].push_back(a); } s--;t--; dfs(s); if(visited[t]) { if(length[t]%2!=k%2) { cout << "Yes" << endl; } else { if(length[t]<=k) { cout << "Yes" << endl; } else { cout << "Unknown" << endl; } } } else { cout << "Unknown" << endl; } }