結果
問題 | No.357 品物の並び替え (Middle) |
ユーザー | naimonon77 |
提出日時 | 2016-09-25 13:14:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
OLE
(最初)
|
実行時間 | - |
コード長 | 1,433 bytes |
コンパイル時間 | 1,577 ms |
コンパイル使用メモリ | 173,728 KB |
実行使用メモリ | 10,148 KB |
最終ジャッジ日時 | 2024-11-18 11:44:19 |
合計ジャッジ時間 | 60,068 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 392 ms
10,020 KB |
testcase_01 | AC | 2 ms
10,016 KB |
testcase_02 | AC | 95 ms
10,020 KB |
testcase_03 | AC | 98 ms
10,148 KB |
testcase_04 | AC | 380 ms
10,016 KB |
testcase_05 | AC | 391 ms
10,016 KB |
testcase_06 | AC | 26 ms
10,016 KB |
testcase_07 | AC | 3 ms
10,016 KB |
testcase_08 | AC | 1,559 ms
10,144 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #define _USE_MATH_DEFINES #include "bits/stdc++.h" #define REP(i,a,b) for(int i=a;i<b;++i) #define rep(i,n) REP(i,0,n) #define ll long long #define ull unsigned ll typedef long double ld; #define ALL(a) begin(a),end(a) #define ifnot(a) if(not a) #define dump(x) cerr << #x << " = " << (x) << endl using namespace std; // #define int ll #ifdef _MSC_VER const bool test = true; #else const bool test = false; #endif int dx[] = { 0,1,0,-1 }; int dy[] = { 1,0,-1,0 }; #define INF (1 << 28) ull mod = (int)1e9 + 7; //..................... #define MAX (int)1e6 + 5 int N, M; vector<pair<int, int>> a[15]; int dp[1 << 16]; void print() { rep(i, 1 << N) { string s; rep(j, N) { if ((i >> j) & 1) s.push_back('1'); else s.push_back('0'); } reverse(ALL(s)); cerr << "dp[" << s << "]= " << dp[i] << endl; } } signed main() { cin >> N >> M; rep(i, M) { int item1, item2, score; cin >> item1 >> item2 >> score; a[item2].push_back({ item1,score }); } rep(mask, 1 << N) { rep(i, N) { if (mask & (1 << i)) continue; int next_mask = mask | (1 << i); if (mask == next_mask) cerr << "error!" << endl; int tmp = dp[mask]; rep(j, a[i].size()) { if (mask & (1 << a[i][j].first)) { tmp += a[i][j].second; } } if (tmp > dp[next_mask]) dp[next_mask] = tmp; } dump(mask); print(); cerr << endl; } cout << dp[(1 << N) - 1] << endl; return 0; }