結果

問題 No.807 umg tours
ユーザー hide1214hide1214
提出日時 2019-03-22 22:25:13
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 292 ms / 4,000 ms
コード長 2,284 bytes
コンパイル時間 1,305 ms
コンパイル使用メモリ 110,364 KB
実行使用メモリ 26,520 KB
最終ジャッジ日時 2023-08-15 12:02:47
合計ジャッジ時間 5,705 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,556 KB
testcase_01 AC 5 ms
9,596 KB
testcase_02 AC 5 ms
9,652 KB
testcase_03 AC 5 ms
9,504 KB
testcase_04 AC 5 ms
9,476 KB
testcase_05 AC 4 ms
9,540 KB
testcase_06 AC 5 ms
9,540 KB
testcase_07 AC 4 ms
9,560 KB
testcase_08 AC 4 ms
9,568 KB
testcase_09 AC 4 ms
9,552 KB
testcase_10 AC 5 ms
9,552 KB
testcase_11 AC 174 ms
22,728 KB
testcase_12 AC 159 ms
20,992 KB
testcase_13 AC 221 ms
24,460 KB
testcase_14 AC 91 ms
14,624 KB
testcase_15 AC 70 ms
14,128 KB
testcase_16 AC 235 ms
25,776 KB
testcase_17 AC 260 ms
25,260 KB
testcase_18 AC 263 ms
25,708 KB
testcase_19 AC 292 ms
26,520 KB
testcase_20 AC 142 ms
17,012 KB
testcase_21 AC 159 ms
17,256 KB
testcase_22 AC 60 ms
11,904 KB
testcase_23 AC 44 ms
11,520 KB
testcase_24 AC 110 ms
21,800 KB
testcase_25 AC 248 ms
25,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<string>
#include<cmath>
#include<algorithm>
#include<functional>
#include<numeric>
#include<queue>
#include<stack>
#include<map>
#include<unordered_map>
#include<set>
#include<bitset>
#include<random>

#pragma region
using namespace std;
#define FOR(i,r,n) for(ll i = (ll)(r); i < (ll)(n); i++)
#define rep(i,n) FOR(i,0LL,n)
#define RFOR(i,r,n) for(ll i=(ll)(n-1);i>=r;i--)
#define rrep(i,n) RFOR(i,0LL,n)
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
#define COUNT(a,y,x) upper_bound(all(a), y) - lower_bound(all(a), x)
#define UNIQUE(a) sort(all(a)); a.erase(unique(all(a)), a.end())
#define pb push_back
typedef long long int ll;
typedef vector<ll> vll;
typedef vector<vll> vvll;
typedef pair<ll, ll> pll;
typedef vector<pll> vpll;
typedef vector<string> vs;
typedef map<ll, ll> MAP;
const ll inf = 2222222222222222222LL;
const ll mod = 1000000007LL;

ll n = 0, m = 0, ans = 0, tmp = 0, ma = -inf, mi = inf;
string s;
bool ok;
ll dx[9] = { 0,1,-1,0,0,1,1,-1,-1 }, dy[9] = { 0,0,0,1,-1,1,-1,1,-1 };
#define endl '\n'
#pragma endregion
#define MAX 222222


ll dist[MAX][2];
vpll edge[MAX];



int main(void) {
  ios::sync_with_stdio(false); cin.tie(0);


  cin >> n >> m;
  rep(i, m) {
    ll a, b, c;
    cin >> a >> b >> c;
    edge[a].pb(make_pair(c, b));
    edge[b].pb(make_pair(c, a));
  }

  priority_queue<pll, vector<pll>, greater<pll>> pq;
  pll p;
  FOR(i, 2, n + 1) rep(j, 2) dist[i][j] = inf;
  pq.push(make_pair(0, 1));
  ll cur;
  while (!pq.empty()) {
    p = pq.top(); pq.pop();
    cur = p.second;
    if (dist[cur][0] < p.first && dist[cur][1] < p.first) continue;
    rep(i,edge[cur].size()) {
      ll to = edge[cur][i].second;
      if (dist[to][1] > dist[cur][0]) {
        dist[to][1] = dist[cur][0];
        pq.push(make_pair(dist[to][1], to));
      }
      if (dist[to][0] > dist[cur][0] + edge[cur][i].first) {
        dist[to][0] = dist[cur][0] + edge[cur][i].first;
        pq.push(make_pair(dist[to][0], to));
      }
      if (dist[to][1] > dist[cur][1] + edge[cur][i].first) {
        dist[to][1] = dist[cur][1] + edge[cur][i].first;
        pq.push(make_pair(dist[to][1], to));
      }
    }
  }

  FOR(i, 1, n + 1) {
    cout << dist[i][0] + dist[i][1] << endl;
  }

  return 0;
}
0