結果
問題 | No.107 モンスター |
ユーザー | koyumeishi |
提出日時 | 2014-12-19 00:51:04 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,046 bytes |
コンパイル時間 | 594 ms |
コンパイル使用メモリ | 75,156 KB |
実行使用メモリ | 10,144 KB |
最終ジャッジ日時 | 2024-06-12 01:28:49 |
合計ジャッジ時間 | 7,218 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <sstream> #include <map> #include <string> #include <algorithm> #include <queue> #include <cmath> using namespace std; int dfs(vector<int> &D, vector<int> &dp, int &N, int state, int MAX_HP){ if(dp[state] >= 0) return dp[state]; //前の相手 for(int j=0; j<N; j++){ //戦っていない相手 if( (state & (1<<j)) == 0) continue; //ひとつ前の状態 int before_state = ( state & ( ~(1<<j) ) ); //ひとつ前の状態の最大体力 int before_HP = MAX_HP - (D[j]<0?1:0); if(before_HP <= 0) continue; int tmp = dfs(D,dp,N, before_state, before_HP); if(tmp <= 0) continue; dp[state] = min( max( dp[state] , tmp + D[j]), MAX_HP*100); } return dp[state]; } int main(){ int N; cin >> N; vector<int> D(N); int max_HP=1; for(int i=0; i<N; i++){ cin >> D[i]; if(D[i] < 0) max_HP++; } vector<int> dp(1<<N, -1); dp[0] = 100; int ans = 0; ans = max( ans, dfs(D,dp,N, (1<<N)-1, max_HP) ); cout << ans << endl; return 0; }