結果

問題 No.50 おもちゃ箱
ユーザー 184184
提出日時 2014-10-26 23:58:02
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 802 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 46,944 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-08-28 23:04:38
合計ジャッジ時間 1,944 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
4,384 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 2 ms
4,384 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
using namespace std;
//namaega 184

int main(){ 
	int n,m;
	scanf("%d",&n);//%d%d%d%d",&n,&v,&x,&y,&ax,&ay);
	int c[100],v[100];
	for(int i=0;i<n;i++){
		scanf("%d",&c[i]);
	}
	scanf("%d",&m);
	for(int i=0;i<m;i++){
		scanf("%d",&v[i]);
	}
	sort(v,v+m);
	int dp[3001]={};
	dp[0]=1;
	int last=0;
	const int mm=(1<<10);
	int s[mm]={};
	for(int i=0;i<mm;i++){
		if(!s[i]){
			int a=i;
			//printf("%d\n",i);
			for(int j=0;(1<<j)<=i;j++){
				if((i>>j)%2)s[i]+=c[j];
			}
		}
	} 
	sort(s,s+mm);
	int ans=0;
	m--;
	for(int j=mm-1;j>=0;j--){
		if(v[m]>=s[j]){
			ans++;
			j=~j;
			j++;
			m--;
			if(m<0)break;
		}
	} 
	printf("%d\n",m>=0?ans:-1);
	return 0;
}
0