結果
問題 | No.107 モンスター |
ユーザー | kurenai3110 |
提出日時 | 2017-01-17 14:12:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 844 bytes |
コンパイル時間 | 473 ms |
コンパイル使用メモリ | 62,384 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-06-02 06:32:57 |
合計ジャッジ時間 | 1,416 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 4 ms
5,376 KB |
testcase_14 | AC | 6 ms
5,760 KB |
testcase_15 | AC | 5 ms
5,632 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 7 ms
6,784 KB |
testcase_19 | AC | 8 ms
7,168 KB |
testcase_20 | AC | 4 ms
5,376 KB |
testcase_21 | AC | 4 ms
5,376 KB |
testcase_22 | AC | 5 ms
5,632 KB |
testcase_23 | AC | 9 ms
8,064 KB |
testcase_24 | AC | 8 ms
7,680 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <string> using namespace std; typedef long long ll; #define max2(a,b) a=max(a,b) int bitDP[1 << 16][18]; int main() { int n; cin >> n; vector<int>D(n); for (int i = 0; i < n; i++)cin >> D[i]; bitDP[0][1] = 100; for (int i = 0; i < (1 << n); i++) { for (int j = 1; j <= n; j++) { if (bitDP[i][j] == 0)continue;//へんじがない、ただのしかばねのようだ for (int k = 0; k < n; k++) { if ((i & (1 << k)) == 0) { if (D[k] > 0) { max2(bitDP[i | (1 << k)][j], min(j * 100, bitDP[i][j] + D[k])); } else { max2(bitDP[i | (1 << k)][j + 1], max(0, bitDP[i][j] + D[k])); } } } } } int ans = 0; for (int j = 1; j < n + 1; j++) { max2(ans, bitDP[(1 << n) - 1][j]); } cout << ans << endl; return 0; }