結果
問題 | No.2674 k-Walk on Bipartite |
ユーザー | nonon |
提出日時 | 2024-03-15 22:03:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,232 bytes |
コンパイル時間 | 2,390 ms |
コンパイル使用メモリ | 212,072 KB |
実行使用メモリ | 17,684 KB |
最終ジャッジ日時 | 2024-09-30 01:16:16 |
合計ジャッジ時間 | 4,262 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
9,804 KB |
testcase_01 | AC | 3 ms
9,608 KB |
testcase_02 | AC | 3 ms
9,564 KB |
testcase_03 | AC | 3 ms
9,576 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 3 ms
9,548 KB |
testcase_07 | AC | 47 ms
15,996 KB |
testcase_08 | AC | 59 ms
14,816 KB |
testcase_09 | AC | 39 ms
15,848 KB |
testcase_10 | AC | 74 ms
15,956 KB |
testcase_11 | AC | 52 ms
14,772 KB |
testcase_12 | AC | 75 ms
15,148 KB |
testcase_13 | AC | 41 ms
15,148 KB |
testcase_14 | AC | 13 ms
12,596 KB |
testcase_15 | AC | 84 ms
16,780 KB |
testcase_16 | AC | 58 ms
16,568 KB |
testcase_17 | AC | 60 ms
14,664 KB |
testcase_18 | AC | 26 ms
13,264 KB |
testcase_19 | AC | 51 ms
15,632 KB |
testcase_20 | AC | 46 ms
15,828 KB |
testcase_21 | AC | 65 ms
15,076 KB |
testcase_22 | AC | 89 ms
17,684 KB |
testcase_23 | AC | 4 ms
9,500 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 3 ms
9,988 KB |
testcase_27 | AC | 4 ms
9,540 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 4 ms
9,600 KB |
testcase_31 | AC | 4 ms
9,540 KB |
testcase_32 | AC | 3 ms
9,468 KB |
testcase_33 | AC | 3 ms
9,808 KB |
testcase_34 | AC | 4 ms
9,488 KB |
testcase_35 | AC | 3 ms
10,104 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
#include<bits/stdc++.h> #include<atcoder/dsu> using namespace std; int N,M,s,t,K,dist[2<<17]; vector<int>G[2<<17]; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin>>N>>M>>s>>t>>K; s--,t--; atcoder::dsu uf(2*N),uf2(N); for(;M--;) { int u,v; cin>>u>>v; u--,v--; G[u].push_back(v); G[v].push_back(u); uf.merge(u,v+N); uf.merge(u+N,v); uf2.merge(u,v); } for(int i=1;i<=N;i++)dist[i]=1<<30; dist[s]=0; queue<int>q; q.push(s); while(!q.empty()) { int u=q.front(); q.pop(); for(int v:G[u])if(dist[v]>dist[u]+1) { dist[v]=dist[u]+1; q.push(v); } } if(dist[t]<=K&&(K-dist[t])%2==0) { cout<<"Yes\n"; return 0; } if(uf2.same(s,t)) { if(K&1) { if(uf.same(s,t)) { cout<<"No\n"; return 0; } } else { if(!uf.same(s,t)) { cout<<"No\n"; return 0; } } cout<<"Unknown\n"; return 0; } cout<<"Unknown\n"; }