結果
問題 | No.357 品物の並び替え (Middle) |
ユーザー | playroller |
提出日時 | 2018-12-07 14:58:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,001 bytes |
コンパイル時間 | 1,618 ms |
コンパイル使用メモリ | 171,232 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-14 03:22:09 |
合計ジャッジ時間 | 4,679 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, j, n) for(int i=j;i<n;++i) #define all(i) i.begin(),i.end() #define rall(i) i.rbegin(),i.rend() #define INF 1e9 #define LINF 1e18 const int mod = 1e9 + 7; typedef long long i64; typedef pair<int, int> pi; template <class T> using vt = vector<T>; template <class T> using vvt = vector<vector<T>>; i64 gcd(i64 n, i64 m) {return (m == 0? n : gcd(m, n % m));} i64 lcm(i64 n, i64 m) {return (n / gcd(n, m) * m);} int main() { cin.tie(0); ios::sync_with_stdio(false); int n, m; cin >> n >> m; vvt<int> score(n, vt<int>(n, 0)); rep(i, 0, m) { int a, b, s; cin >> a >> b >> s; score[a][b] = s; } vt<int> dp(1 << n, 0); rep(bit, 0, (1 << n)) { rep(v, 0, m) { if(bit & (1 << v)) continue; int sum = 0; rep(i, 0, m) { if(bit & (1 << i)) sum += score[i][v]; } dp[bit | (1 << v)] = max(dp[bit | (1 << v)], dp[bit] + sum); } } cout << dp[(1 << n) - 1] << endl; }