結果

問題 No.50 おもちゃ箱
ユーザー ss_koishiss_koishi
提出日時 2014-11-07 16:07:32
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 811 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 57,848 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-06-10 01:02:05
合計ジャッジ時間 3,419 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 208 ms
7,552 KB
testcase_06 AC 8 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,948 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 WA -
testcase_17 AC 6 ms
6,940 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 24 ms
7,424 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 5 ms
6,940 KB
testcase_22 AC 13 ms
7,552 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 5 ms
6,940 KB
testcase_28 AC 56 ms
7,552 KB
testcase_29 AC 44 ms
7,552 KB
testcase_30 AC 24 ms
7,296 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 124 ms
7,424 KB
testcase_33 AC 144 ms
7,424 KB
testcase_34 AC 155 ms
7,424 KB
testcase_35 AC 68 ms
7,424 KB
testcase_36 AC 108 ms
7,552 KB
testcase_37 AC 57 ms
7,424 KB
testcase_38 AC 36 ms
7,424 KB
testcase_39 AC 104 ms
7,424 KB
testcase_40 AC 212 ms
7,424 KB
testcase_41 AC 103 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#define INF (2 << 28)
using namespace std;

int n, m;
int a[11], b[11], dp[1<<10][1<<10];

int rec(int toy, int used){

  //cout << toy << " " << used << endl;
  if(toy == 0) return __builtin_popcount(used);
  if(dp[toy][used]) return dp[toy][used];
  
  int ret = INF;
  for(int i = 0; i < n; i++){
    for(int j = 0; j < m; j++){
      if(a[i] <= b[j] && toy >> i & 1){
	b[j] -= a[i];
	ret = min(ret, rec(~(1 << i) & toy, used | (1 << j)));
	b[j] += a[i];
      }
    }
  }

  return dp[toy][used] = ret;
}
    
int main(){
  
  cin >> n;
  for(int i = 0; i < n; i++) cin >> a[i];
  cin >> m;
  for(int i = 0; i < m; i++) cin >> b[i];
  
  int d = rec((1<<n)-1, 0);
  if(d == INF) cout << -1 << endl;
  else cout << d << endl;
}
0