結果
問題 | No.2674 k-Walk on Bipartite |
ユーザー | t9unkubj |
提出日時 | 2024-03-15 23:22:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 929 bytes |
コンパイル時間 | 1,718 ms |
コンパイル使用メモリ | 174,732 KB |
実行使用メモリ | 13,716 KB |
最終ジャッジ日時 | 2024-09-30 02:56:59 |
合計ジャッジ時間 | 7,862 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 41 ms
11,872 KB |
testcase_10 | RE | - |
testcase_11 | AC | 47 ms
9,984 KB |
testcase_12 | RE | - |
testcase_13 | AC | 37 ms
10,724 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 26 ms
8,576 KB |
testcase_19 | AC | 48 ms
11,252 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 92 ms
13,716 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 2 ms
6,816 KB |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
ソースコード
/** * author: t9unkubj * created: 2024-03-15 */ #include<bits/stdc++.h> #ifdef t9unkubj #define _GLIBCXX_DEBUG #define dbg(x) cout<<__LINE__<<" "<<#x<<":="<<x<<endl; #else #define dbg(x) 58 #endif using namespace std; //#include<atcoder/all> //using namespace atcoder; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n,m; cin>>n>>m; int s,t,k; cin>>s>>t>>k; s--,t--; vector<vector<int>>g(n); for(int i=0;i<m;i++){ int a,b; cin>>a>>b; a--,b--; g[a].push_back(b); g[b].push_back(a); } int INF=2e9; vector<int>md(n,INF); queue<int>que; md[s]=0; que.push(s); while(que.size()){ auto p=que.front();que.pop(); for(auto x:g[p]){ if(md[x]>md[p]+1)md[x]=md[p]+1,que.push(x); } } assert(md[t]==INF); if(md[t]!=INF){ if(md[t]%2!=k%2){ cout<<"No"<<endl; } else if(md[t]<=k){ cout<<"Yes"<<endl; } else cout<<"Unknown"<<endl; } else cout<<"Unknown"<<endl; }