結果
問題 | No.90 品物の並び替え |
ユーザー | nomi |
提出日時 | 2019-03-11 21:28:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 448 ms / 5,000 ms |
コード長 | 957 bytes |
コンパイル時間 | 1,535 ms |
コンパイル使用メモリ | 169,632 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 15:40:35 |
合計ジャッジ時間 | 2,608 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 32 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 4 ms
6,944 KB |
testcase_04 | AC | 5 ms
6,940 KB |
testcase_05 | AC | 37 ms
6,940 KB |
testcase_06 | AC | 27 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 448 ms
6,944 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 item1[100]; int item2[100]; int score[100]; signed main() { cin >> N >> M; for (int i = 0; i < M; i++) { cin >> item1[i] >> item2[i] >> score[i]; } // 並び方を定義する配列 vector<int> v(N); iota(v.begin(), v.end(), 0); int ans = 0; do { int sum = 0; // この並びの時の合計スコア // その並びになってるかを全て調べる for (int i = 0; i < M; i++) { int cnt = 0; for (int j = 0; j < N; j++) { if (cnt == 0 and v[j] == item1[i]) { cnt++; } if (cnt == 1 and v[j] == item2[i]) { cnt++; } } // その並びになってたらスコアを足す if (cnt == 2) { sum += score[i]; } } chmax(ans, sum); } while (next_permutation(v.begin(), v.end())); cout << ans << endl; return 0; }