結果
問題 | No.90 品物の並び替え |
ユーザー | nomi |
提出日時 | 2019-03-11 22:24:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 18 ms / 5,000 ms |
コード長 | 667 bytes |
コンパイル時間 | 1,699 ms |
コンパイル使用メモリ | 170,280 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 15:41:40 |
合計ジャッジ時間 | 2,259 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 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 | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 18 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long template<class T>bool chmax(T &a, const T &b) { if (a<b) { a = b; return 1; } return 0; } int N, M; int item[100][100]; // item1, item2, scoreをこれひとつにまとめた signed main() { cin >> N >> M; for (int i = 0; i < M; i++) { int a, b, c; cin >> a >> b >> c; item[a][b] = c; } vector<int> v(N); iota(v.begin(), v.end(), 0); int ans = 0; do { int sum = 0; for (int i = 0; i < N; i++) { for (int j = i+1; j < N; j++) { sum += item[v[i]][v[j]]; } } chmax(ans, sum); } while (next_permutation(v.begin(), v.end())); cout << ans << endl; return 0; }