結果
問題 | No.2569 はじめてのおつかいHard |
ユーザー | 沙耶花 |
提出日時 | 2023-12-06 01:33:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,204 bytes |
コンパイル時間 | 4,351 ms |
コンパイル使用メモリ | 271,008 KB |
実行使用メモリ | 31,092 KB |
最終ジャッジ日時 | 2024-09-27 00:55:46 |
合計ジャッジ時間 | 8,554 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
7,808 KB |
testcase_01 | AC | 140 ms
7,808 KB |
testcase_02 | AC | 138 ms
7,808 KB |
testcase_03 | AC | 140 ms
7,808 KB |
testcase_04 | AC | 139 ms
7,808 KB |
testcase_05 | WA | - |
testcase_06 | AC | 300 ms
13,260 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 212 ms
10,272 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
ソースコード
#include <stdio.h> #include <atcoder/all> #include <bits/stdc++.h> using namespace std; using namespace atcoder; using mint = modint998244353; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 4000000000000000001 vector<long long> get(vector<vector<pair<int,int>>> E,int s){ int N = E.size(); vector<long long> d(N,Inf64); d[s] = 0; priority_queue<pair<long long,int>,vector<pair<long long,int>>,greater<pair<long long,int>>> Q; Q.emplace(0,s); while(Q.size()>0){ long long D = Q.top().first; int u = Q.top().second; Q.pop(); if(D!=d[u])continue; rep(i,E[u].size()){ int v = E[u][i].first; long long DD = E[u][i].second + D; if(d[v]>DD){ d[v] = DD; Q.emplace(DD,v); } } } return d; } int main(){ int N,M; cin>>N>>M; vector<vector<pair<int,int>>> E(N),e(N); rep(i,M){ int a,b,c; cin>>a>>b>>c; a--,b--; E[a].emplace_back(b,c); e[b].emplace_back(a,c); } auto d0 = get(E,N-2),d1 = get(E,N-1),d2 = get(e,N-2),d3 = get(e,N-1); rep(i,N-2){ long long ans = Inf64; ans = min(ans,d2[i] + d0[N-1] + d1[i]); ans = min(ans,d3[i] + d1[N-2] + d0[i]); if(ans==Inf64)ans = -1; cout<<ans<<endl; } return 0; }