結果
問題 | No.845 最長の切符 |
ユーザー | lotus |
提出日時 | 2019-06-28 22:48:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 828 bytes |
コンパイル時間 | 1,668 ms |
コンパイル使用メモリ | 174,280 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-02 05:02:57 |
合計ジャッジ時間 | 7,299 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 803 ms
5,376 KB |
testcase_11 | AC | 139 ms
5,376 KB |
testcase_12 | AC | 18 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | TLE | - |
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 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define INF 1000000007 #define LINF 1000000000000000007 typedef long long i64; typedef pair<i64,i64> P; int n, m; vector<P> v[20]; bool used[20]; i64 dfs(int now, i64 score){ i64 ret = score; for(int i = 0; i < v[now].size(); i++){ if(used[v[now][i].first]) continue; used[now] = 1; ret = max(ret, dfs(v[now][i].first, score) + v[now][i].second); used[v[now][i].first] = 0; } return ret; } int main(){ cin >> n >> m; for(int i = 0; i < m; i++){ i64 a,b,c; cin >> a >> b >> c; v[a].push_back(P(b,c)); v[b].push_back(P(a,c)); } for(int i = 0; i < n; i++){ sort(v[i].begin(), v[i].end(), greater<P>()); } i64 ans = 0; for(int i = 1; i <= n; i++){ used[i] = 1; ans = max(ans, dfs(i, 0)); used[i] = 0; } cout << ans << endl; return 0; }