結果
問題 | No.90 品物の並び替え |
ユーザー | Mister |
提出日時 | 2020-04-12 04:17:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 91 ms / 5,000 ms |
コード長 | 842 bytes |
コンパイル時間 | 688 ms |
コンパイル使用メモリ | 86,680 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 18:34:56 |
合計ジャッジ時間 | 1,415 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 8 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 | 9 ms
5,376 KB |
testcase_06 | AC | 7 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 91 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <numeric> #include <vector> #include <tuple> void solve() { int n, m; std::cin >> n >> m; std::vector<std::tuple<int, int, int>> ts(m); for (auto& t : ts) { int x, y, c; std::cin >> x >> y >> c; t = std::make_tuple(x, y, c); } std::vector<int> idxs(n); std::iota(idxs.begin(), idxs.end(), 0); int ans = 0; do { int score = 0; for (auto t : ts) { int x, y, c; std::tie(x, y, c) = t; if (idxs[x] < idxs[y]) score += c; } ans = std::max(ans, score); } while (std::next_permutation(idxs.begin(), idxs.end())); std::cout << ans << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }