結果
問題 | No.107 モンスター |
ユーザー | srjywrdnprkt |
提出日時 | 2022-12-22 13:04:09 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,012 bytes |
コンパイル時間 | 1,891 ms |
コンパイル使用メモリ | 144,492 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 03:20:08 |
合計ジャッジ時間 | 2,952 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | WA | - |
testcase_14 | AC | 4 ms
6,820 KB |
testcase_15 | AC | 5 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 3 ms
6,816 KB |
testcase_18 | AC | 9 ms
6,816 KB |
testcase_19 | AC | 10 ms
6,816 KB |
testcase_20 | AC | 3 ms
6,820 KB |
testcase_21 | AC | 3 ms
6,820 KB |
testcase_22 | WA | - |
testcase_23 | AC | 8 ms
6,820 KB |
testcase_24 | AC | 11 ms
6,820 KB |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> #include <complex> using namespace std; int main(){ long long N, mx, cnt; cin >> N; mx = 1LL<<N; vector<long long> D(N); for (int i=0; i<N; i++) cin >> D[i]; vector<long long> dp(mx, -1e18); dp[0] = 100; for (int i=0; i<mx; i++){ for (int j=0; j<N; j++){ if (!(i & 1LL<<j)){ if (D[j] < 0){ dp[i|(1LL<<j)] = max(dp[i|(1LL<<j)], dp[i]+D[j]); if (dp[i|(1LL<<j)] <= 0) dp[i|(1LL<<j)] = -1e18; } else{ cnt = 0; for (int k=0; k<N; k++) if (i & 1LL<<k) cnt++; dp[i|(1LL<<j)] = max(dp[i|(1LL<<j)], min(dp[i]+D[j], (cnt+1) * 100)); } } } } cout << max(dp[mx-1], 0LL) << endl; return 0; }