結果

問題 No.3291 K-step Navigation
ユーザー Rubikun
提出日時 2025-10-03 21:42:05
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 91 ms / 3,000 ms
コード長 2,168 bytes
コンパイル時間 1,936 ms
コンパイル使用メモリ 203,580 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-10-03 23:30:14
合計ジャッジ時間 4,415 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define vi vector<int>
#define vl vector<ll>
#define vii vector<pair<int,int>>
#define vll vector<pair<ll,ll>>
#define vvi vector<vector<int>>
#define vvl vector<vector<ll>>
#define vvii vector<vector<pair<int,int>>>
#define vvll vector<vector<pair<ll,ll>>>
#define vst vector<string>
#define pii pair<int,int>
#define pll pair<ll,ll>
#define pb push_back
#define all(x) (x).begin(),(x).end()
#define mkunique(x) sort(all(x));(x).erase(unique(all(x)),(x).end())
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=2005,INF=15<<26;

vi G[MAX];
int dis[MAX][2];

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    ll N,M,K,s,t;cin>>N>>M>>K>>s>>t;s--;t--;
    for(int i=0;i<M;i++){
        int a,b;cin>>a>>b;a--;b--;
        G[a].pb(b);
        G[b].pb(a);
    }
    if(K&1){
        cout<<"Yes\n";
    }else{
        for(int x:G[s]){
            if(x!=t){
                cout<<"Yes\n";
                return 0;
            }
        }
        for(int x:G[t]){
            if(x!=s){
                cout<<"Yes\n";
                return 0;
            }
        }
        
        if(si(G[s])==0){
            cout<<"No\n";
            return 0;
        }
        
        int mi=INF;
        for(int u=0;u<N;u++){
            for(int i=0;i<N;i++) dis[i][0]=dis[i][1]=INF;
            queue<pii> Q;
            Q.push(mp(u,0));
            dis[u][0]=0;
            while(!Q.empty()){
                auto [x,y]=Q.front();Q.pop();
                for(int to:G[x]){
                    if(chmin(dis[to][y^1],dis[x][y]+1)) Q.push(mp(to,y^1));
                }
            }
            if(dis[u][1]!=INF) chmin(mi,dis[u][1]);
        }
        
        if(mi!=INF&&mi+3<=K){
            cout<<"Yes\n";
        }else{
            cout<<"No\n";
        }
    }
}


0