結果
問題 | No.50 おもちゃ箱 |
ユーザー | 184 |
提出日時 | 2014-10-26 23:58:02 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 802 bytes |
コンパイル時間 | 407 ms |
コンパイル使用メモリ | 42,540 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-09 17:42:13 |
合計ジャッジ時間 | 1,390 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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
5,376 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 | 1 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 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 | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%d",&n);//%d%d%d%d",&n,&v,&x,&y,&ax,&ay); | ~~~~~^~~~~~~~~ main.cpp:14:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 14 | scanf("%d",&c[i]); | ~~~~~^~~~~~~~~~~~ main.cpp:16:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 16 | scanf("%d",&m); | ~~~~~^~~~~~~~~ main.cpp:18:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 18 | scanf("%d",&v[i]); | ~~~~~^~~~~~~~~~~~
ソースコード
#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; }