結果
問題 | No.107 モンスター |
ユーザー | kurenai3110 |
提出日時 | 2017-01-17 14:31:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 802 bytes |
コンパイル時間 | 594 ms |
コンパイル使用メモリ | 61,840 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 06:33:41 |
合計ジャッジ時間 | 1,629 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 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 | WA | - |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
#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]; int main() { int n; cin >> n; vector<int>D(n); for (int i = 0; i < n; i++)cin >> D[i]; bitDP[0] = 100; for (int i = 0; i < (1 << n); i++) { if (bitDP[i] == 0)continue;//へんじがない、ただのしかばねのようだ int maxHP = 100; for (int k = 0; k < n; k++) { if ((i & (1 << k)) == 0 && D[k] < 0)maxHP+=100; } for (int k = 0; k < n; k++) { if ((i & (1 << k)) == 0) { if (D[k] > 0) { max2(bitDP[i | (1 << k)], min(maxHP, bitDP[i] + D[k])); } else { max2(bitDP[i | (1 << k)], max(0, bitDP[i] + D[k])); } } } } cout << bitDP[(1 << n) - 1] << endl; return 0; }