結果
問題 | No.107 モンスター |
ユーザー | autumn-eel |
提出日時 | 2017-12-19 22:37:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 427 bytes |
コンパイル時間 | 1,808 ms |
コンパイル使用メモリ | 166,712 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 13:00:48 |
合計ジャッジ時間 | 3,406 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n)for(int i=0;i<(n);i++) using namespace std; typedef pair<int,int>P; int dp[1<<15]; int m[15]; int main(){ int n;scanf("%d",&n); rep(i,n)scanf("%d",&m[i]); memset(dp,0x3f,sizeof(dp)); dp[0]=0; rep(i,1<<n){ int cnt=0; rep(j,n){ if(i>>j&1)(cnt+=m[j])%=1000; } rep(j,n){ if(!(i>>j&1))dp[i|1<<j]=min(dp[i|1<<j],dp[i]+max(0,m[j]-cnt)); } } cout<<dp[(1<<n)-1]<<endl; }