結果
問題 | No.160 最短経路のうち辞書順最小 |
ユーザー | Bantako |
提出日時 | 2019-01-01 16:45:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,188 bytes |
コンパイル時間 | 1,948 ms |
コンパイル使用メモリ | 171,612 KB |
実行使用メモリ | 8,832 KB |
最終ジャッジ日時 | 2024-11-07 12:00:21 |
合計ジャッジ時間 | 8,747 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 12 ms
5,248 KB |
testcase_05 | AC | 14 ms
5,248 KB |
testcase_06 | AC | 17 ms
5,248 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
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 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
コンパイルメッセージ
main.cpp:27:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 27 | main(){ | ^~~~
ソースコード
#include<bits/stdc++.h> #define rep(i,a,b) for(int i=int(a);i<int(b);++i) using namespace std; typedef long long ll; int INF = (1LL << 30) - 1; int MOD = 1e9+7; int N,M,S,G; int dest[200][200]; int used[200]; stack<int> st; bool dfs(int now, int res){ if(now == G && res == 0){ st.push(now); return true; } rep(i,0,N){ if(i == now || used[i] || res < dest[now][i])continue; used[i] = 1; if(dfs(i, res - dest[now][i])){ st.push(now); return true; } used[i] = 0; } return false; } main(){ cin >> N >> M >> S >> G; int dist[N][N]; rep(i,0,N)rep(j,0,N)dest[i][j] = dist[i][j] = INF; rep(i,0,N)dist[i][i] = 0; int A[M],B[M],C[M]; rep(i,0,M){ cin >> A[i] >> B[i] >> C[i]; dest[A[i]][B[i]] = dest[B[i]][A[i]] = C[i]; dist[A[i]][B[i]] = dist[B[i]][A[i]] = C[i]; } rep(i,0,N)rep(j,0,N)rep(k,0,N){ dist[j][k] = min(dist[j][k], dist[j][i] + dist[i][k]); } //cout << dist[S][G] << endl; used[S] = 1; dfs(S, dist[S][G]); while(!st.empty()){ cout << st.top() << " "; st.pop(); } cout << endl; }