結果
問題 | No.807 umg tours |
ユーザー | chocopuu |
提出日時 | 2019-03-22 22:58:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,611 bytes |
コンパイル時間 | 1,452 ms |
コンパイル使用メモリ | 173,296 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-09-19 06:22:15 |
合計ジャッジ時間 | 7,479 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
11,136 KB |
testcase_01 | AC | 4 ms
5,888 KB |
testcase_02 | AC | 4 ms
5,888 KB |
testcase_03 | AC | 5 ms
5,888 KB |
testcase_04 | AC | 4 ms
5,888 KB |
testcase_05 | AC | 3 ms
5,760 KB |
testcase_06 | AC | 4 ms
5,888 KB |
testcase_07 | AC | 4 ms
6,016 KB |
testcase_08 | AC | 3 ms
5,760 KB |
testcase_09 | AC | 3 ms
5,760 KB |
testcase_10 | AC | 2 ms
5,760 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long #define pb push_back #define fi first #define se second #define FOR(i,n) for(int i = 0;i<n;i++) #define rep(i,s,n) for(int i = s;i<n;i++) #define rrep(i,s,n) for(int i = (n)-1;i>=(s);i--) #define all(v) (v).begin(),(v).end() #define chmin(a,b) a=min((a),(b)) #define chmax(a,b) a=max((a),(b)) #define endl '\n' #define IOS() ios_base::sync_with_stdio(0);cin.tie(0) typedef long long ll; typedef pair<int,int>pint; typedef vector<int>vint; typedef vector<pint>vpint; const ll MOD=1000000007,INF=1ll<<60; typedef vector<vint>vvint; int N,M; struct edge{ int to,cost; edge(int to,int cost):to(to),cost(cost){} }; vector <edge> tree[100010]; int dp[100010][2]; void dfs(int i,int j){ for(auto e:tree[i]){ if(j==0){ if(dp[e.to][1]>dp[i][j]){ dp[e.to][1]=dp[i][j]; dfs(e.to,1); } } if(dp[e.to][j]>dp[i][j]+e.cost){ dp[e.to][j]=dp[i][j]+e.cost; dfs(e.to,j); } } } signed main() { IOS(); cin>>N>>M; vpint v(M); rep(i,0,M){ int a,b,c; cin>>a>>b>>c; a--;b--; if(a>b)swap(a,b); v[i]={a,b}; tree[a].pb({b,c}); tree[b].pb({a,c}); } rep(i,0,N)rep(j,0,2)dp[i][j]=INF; dp[0][0]=dp[0][1]=0; dfs(0,0); rep(i,0,N){ cout<<dp[i][0]+dp[i][1]<<endl; } return 0; }