結果

問題 No.416 旅行会社
ユーザー tossytossy
提出日時 2016-08-28 11:30:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 521 ms / 4,000 ms
コード長 1,483 bytes
コンパイル時間 1,099 ms
コンパイル使用メモリ 106,744 KB
実行使用メモリ 18,412 KB
最終ジャッジ日時 2024-05-08 15:15:10
合計ジャッジ時間 7,495 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
10,496 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 28 ms
5,376 KB
testcase_10 AC 224 ms
11,008 KB
testcase_11 AC 240 ms
12,116 KB
testcase_12 AC 247 ms
11,988 KB
testcase_13 AC 215 ms
11,264 KB
testcase_14 AC 502 ms
18,284 KB
testcase_15 AC 511 ms
18,284 KB
testcase_16 AC 521 ms
18,284 KB
testcase_17 AC 510 ms
18,160 KB
testcase_18 AC 513 ms
18,412 KB
testcase_19 AC 381 ms
15,652 KB
testcase_20 AC 381 ms
15,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <string>
#include <cmath>
#include <cassert>
#include <iostream>
#include <algorithm>
#include <stack>
#include <queue>
#include <vector>
#include <set>
#include <map>
#include <bitset>
using namespace std;

#define repl(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define rep(i,n) repl(i,0,n)
#define mp(a,b) make_pair(a,b)
#define pb(a) push_back(a)
#define all(x) (x).begin(),(x).end()
#define dbg(x) cout<<#x"="<<x<<endl
#define fi first
#define se second

#define INF 2147483600

typedef pair<int, int> P;

int main(){
  int n,m,q;
  cin>>n>>m>>q;

  set<P> brg;
  rep(i,m){
    int a,b;
    scanf("%d %d", &a, &b);
    a--;b--;
    brg.insert(mp(a,b));
  }

  vector<vector<P> > vec(n, vector<P>());
  // to, weight

  rep(i,q){
    int a,b;
    scanf("%d %d", &a, &b);
    a--;b--;
    vec[a].pb(mp(b, i+1));
    vec[b].pb(mp(a, i+1));
    brg.erase(mp(a,b));
  }

  for(P p: brg){
    int a=p.fi, b=p.se;
    vec[a].pb(mp(b,INF));
    vec[b].pb(mp(a,INF));
  }

  vector<int> res(n, -INF);
  vector<bool> visited(n, false);
  priority_queue<P> pq;
  // <weight, to>

  for(P p: vec[0]) pq.push(mp(p.se, p.fi));
  while(!pq.empty()){
    P p = pq.top(); pq.pop();
    int now = p.se, w =  p.fi;
    if(res[now] >= w) continue;
    res[now] = w;
    for(P nxt: vec[now]) pq.push(mp(min(w, nxt.se), nxt.fi));
  }

  repl(i,1,n){
    if(res[i]==INF) res[i]=-1;
    if(res[i]==-INF) res[i]=0;
    cout<<res[i]<<endl;
  }

  return 0;
}
0