結果

問題 No.416 旅行会社
ユーザー vjudge1vjudge1
提出日時 2024-12-22 17:12:53
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 433 ms / 4,000 ms
コード長 2,564 bytes
コンパイル時間 1,904 ms
コンパイル使用メモリ 179,336 KB
実行使用メモリ 117,424 KB
最終ジャッジ日時 2024-12-22 17:13:02
合計ジャッジ時間 7,906 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
107,264 KB
testcase_01 AC 80 ms
97,408 KB
testcase_02 AC 80 ms
97,408 KB
testcase_03 AC 80 ms
97,408 KB
testcase_04 AC 77 ms
97,408 KB
testcase_05 AC 79 ms
97,408 KB
testcase_06 AC 79 ms
97,280 KB
testcase_07 AC 79 ms
97,408 KB
testcase_08 AC 82 ms
97,664 KB
testcase_09 AC 91 ms
98,560 KB
testcase_10 AC 175 ms
107,264 KB
testcase_11 AC 173 ms
107,264 KB
testcase_12 AC 176 ms
107,264 KB
testcase_13 AC 119 ms
107,264 KB
testcase_14 AC 433 ms
117,424 KB
testcase_15 AC 416 ms
117,268 KB
testcase_16 AC 409 ms
116,908 KB
testcase_17 AC 400 ms
117,284 KB
testcase_18 AC 405 ms
117,316 KB
testcase_19 AC 332 ms
112,172 KB
testcase_20 AC 301 ms
112,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define MAXN 2000005
#define INF INT_MAX
using namespace std;
 
inline int read(){
    int x=0,f=1;
    char ch=getchar();
    while(ch<'0'||ch>'9'){
        if(ch=='-') f=-1;
        ch=getchar();
    }
    while(ch>='0'&&ch<='9'){
        x=x*10+ch-48;
        ch=getchar();
    }
    return x*f;
}
 
int n,m,Q;
map<int,int> e[MAXN];
int ans[MAXN];
bool vis[MAXN];
 
signed main(){
    n=read();m=read();Q=read();
    for(int i=0;i<m;i++){
        int u,v;
        u=read();v=read();
        e[u][v]=INF;
        e[v][u]=INF;
    }
    for(int i=0;i<Q;i++){
        int x,y;
        x=read();y=read();
        e[x][y]=i+1;
        e[y][x]=i+1;
    }
    priority_queue<pair<int,int>> q;
    ans[1]=INF;
    q.push(make_pair(INF,1));
    while(!q.empty()){
        auto v=q.top();
        q.pop();
        int i=v.second;
        if(vis[i]) continue;
        vis[i]=1;
        for(auto v:e[i]){
            int j=v.first;
            int u=v.second;
            if(ans[j]<min(ans[i],u)){
                ans[j]=min(ans[i],u);
                q.push(make_pair(ans[j],j));
            }
        }
    }
    for(int i=2;i<=n;i++){
        if(ans[i]==INF){
            printf("-1\n");
        }else{
            printf("%d\n",ans[i]);
        }
    }
    return 0;
}
/*??
??????
???????????????????????
????????????????????
???????????5???????????????????????????????????????????????????????????????????????????????????????????????24?????????????????????????????????????????????????????????????????????
????????????????????
???????????????????????????????????????????????????????????????????????????????????????????...?????????????
?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...????????????????????????????????
??????????????
????????????
?????????????
?????????????
?????????
??? ? ?? ? ???????
???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
?????????????????????????????????????????????????????????????????????????????????????????????????????????????????
???????????????????????????
?????????????????????
????????????????????
?????????????
????????????????
????????????????????????
?????????????????????????
??????
??????????????
????????????
???????????????????
????????????
??????
?????
???????????
??????????????
?????
?????
?????
??????
???????????????
??????????
??????????????
????????????
????*/
0