結果
問題 | No.50 おもちゃ箱 |
ユーザー | btk |
提出日時 | 2017-06-20 17:05:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 226 ms / 5,000 ms |
コード長 | 1,398 bytes |
コンパイル時間 | 1,925 ms |
コンパイル使用メモリ | 173,464 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 22:05:33 |
合計ジャッジ時間 | 6,905 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 221 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 188 ms
5,376 KB |
testcase_06 | AC | 21 ms
5,376 KB |
testcase_07 | AC | 2 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 | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 153 ms
5,376 KB |
testcase_18 | AC | 17 ms
5,376 KB |
testcase_19 | AC | 226 ms
5,376 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 20 ms
5,376 KB |
testcase_22 | AC | 191 ms
5,376 KB |
testcase_23 | AC | 13 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 21 ms
5,376 KB |
testcase_28 | AC | 196 ms
5,376 KB |
testcase_29 | AC | 197 ms
5,376 KB |
testcase_30 | AC | 166 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 207 ms
5,376 KB |
testcase_33 | AC | 188 ms
5,376 KB |
testcase_34 | AC | 211 ms
5,376 KB |
testcase_35 | AC | 207 ms
5,376 KB |
testcase_36 | AC | 217 ms
5,376 KB |
testcase_37 | AC | 184 ms
5,376 KB |
testcase_38 | AC | 180 ms
5,376 KB |
testcase_39 | AC | 215 ms
5,376 KB |
testcase_40 | AC | 221 ms
5,376 KB |
testcase_41 | AC | 186 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long LL; #define CIN_ONLY if(1) struct cww{cww(){ CIN_ONLY{ ios::sync_with_stdio(false);cin.tie(0); } }}star; #define fin "\n" #define FOR(i,bg,ed) for(int i=(bg);i<(ed);i++) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() #define fi first #define se second #define pb push_back #define DEBUG if(0) #define REC(ret, ...) std::function<ret (__VA_ARGS__)> template <typename T>inline bool chmin(T &l,T r) {bool a=l>r;if(a)l=r;return a;} template <typename T>inline bool chmax(T &l,T r) {bool a=l<r;if(a)l=r;return a;} template <typename T> istream& operator>>(istream &is,vector<T> &v){ for(auto &it:v)is>>it; return is; } int main(){ int N,M; cin>>N; vector<int> a(N); cin>>a; cin>>M; vector<int> b(M); cin>>b; sort(ALL(b)); reverse(ALL(b)); vector<int> ord(N); iota(ALL(ord),0); int res=100; do{ auto c= b; int id=0; bool flag=true; REP(i,N){ while(id<M){ if(c[id]>=a[ord[i]])break; id++; } if(id==M){ flag=false; break; } c[id]-=a[ord[i]]; } if(flag)chmin(res,id+1); }while(next_permutation(ALL(ord))); if(res==100)res=-1; cout<<res<<endl; return 0; }