Submission #00227
ソースコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | #include <bits/stdc++.h> typedef long long ll; const ll INF = 1e9; const ll MOD = 1e9+7; const ll LINF = 1e18; using namespace std; #define dump(x) cout << #x << " = " << (x) << endl; #define YES(n) cout << ((n) ? "YES" : "NO" ) << endl #define Yes(n) cout << ((n) ? "Yes" : "No" ) << endl #define POSSIBLE(n) cout << ((n) ? "POSSIBLE" : "IMPOSSIBLE" ) << endl #define Possible(n) cout << ((n) ? "Possible" : "Impossible" ) << endl #define possible(n) cout << ((n) ? "possible" : "impossible" ) << endl #define SANKOU(n,a,b) cout << ((n) ? (#a) : (#b) ) << endl #define FOR(i,a,b) for(ll i=(a);i<(b);++i) #define REP(i,n) for(ll i=0;i<(n);++i) #define REPR(i,n) for(ll i=n;i>=0;i--) #define FOREACH(x,a) for(auto&& (x) : (a) ) #define WFA(d,v) REP(k,v)REP(i,v)REP(j,v)d[i][j]=min(d[i][j],d[i][k]+d[k][j]) #define SCOUT(x) cout<<(x)<<" " #define ENDL cout<<endl #define VECCIN(x) for(auto&youso_: (x) )cin>>youso_ #define VECIN2(x,y) REP(i,x.size())cin>>x[i]>>y[i] #define VECCOUT(x) if(1){for(auto tt=x.begin();tt!=x.end();tt++){if(tt!=x.begin())cout<<" ";cout<<(*tt);}cout<<endl;} #define ALL(obj) (obj).begin(),(obj).end() #define EXIST(n,x) (find(ALL(n),x)!=n.end()) #define UNIQUE(obj) sort(ALL( obj )); obj.erase(unique(ALL(obj)),obj.end()) #define EN(x) if(1){cout<<#x<<endl;return 0;} #define COUT(x) cout<<(x)<<endl void CINT(){} template < class Head, class ... Tail> void CINT(Head&& head,Tail&&... tail){ cin>>head; CINT(move(tail)...); } #define CIN(...) ll __VA_ARGS__;CINT(__VA_ARGS__) #define LCIN(...) ll __VA_ARGS__;CINT(__VA_ARGS__) #define SCIN(...) string __VA_ARGS__;CINT(__VA_ARGS__) template < class T = ll> T IN(){T x;cin>>x; return (x);} template < class Head> void VT(Head head){} template < class Head, class Seco, class ... Tail> void VT(Head&& head,Seco&& seco,Tail&&... tail){ seco.resize(head); VT(head,move(tail)...); } void VT2(){} template < class Head, class ... Tail> void VT2(Head&& head,Tail&&... tail){ VECCIN(head); VT2(move(tail)...); } template < class Head> void VT3(Head&& head){} template < class Head, class Seco, class ... Tail> void VT3(Head&& head,Seco&& seco,Tail&&... tail){ seco[head]=IN(); VT3(head,move(tail)...); } #define VC1(n,...) V __VA_ARGS__;VT(n,__VA_ARGS__);VT2(__VA_ARGS__); //aaabbbccc #define VC2(n,...) V __VA_ARGS__;VT(n,__VA_ARGS__);REP(i,n)VT3(i,__VA_ARGS__); //abcabcabc // #include <boost/multiprecision/cpp_ll.hpp> // using namespace boost::multiprecision; // cpp_ll #define P pair<ll,ll> #define V vector<ll> #define M map<ll,ll> #define S set<ll> #define pb(a) push_back(a) #define mp make_pair signed main(){ CIN(n,m,l); VC2(n,a,b); VC2(m,x,y); V ma(l+1,0); REP(i,n){ REP(j,INF){ if (a[i]*j>l) break ; ma[a[i]*j]=max(ma[a[i]*j],b[i]*j); } } FOR(i,1,l+1){ REP(j,INF){ if (i*j>l) break ; ma[i*j]=max(ma[i*j],ma[i]*j); } } vector<V> dp(l+1, V(l+1, -1)); dp[0][0]=0; REP(i,l){ REP(j,l){ if (dp[i][j]==-1) continue ; dp[i+1][j]=max(dp[i][j],dp[i+1][j]); if (j+i+1<=l)dp[i+1][i+j+1]=max(dp[i+1][i+j+1], dp[i][j]+ma[i]); } } ll ans = -LINF; REP(i,l)REP(j,l)ans=max(dp[i][j],ans); COUT(ans); } |
ステータス
項目 | データ |
---|---|
問題 | 0008 - 試食 |
ユーザー名 | shibh308 |
投稿日時 | 2018-11-24 15:37:36 |
言語 | C++17 |
状態 | Memory Limit Exceeded |
得点 | 0 |
ソースコード長 | 3395 Byte |
最大実行時間 | 1000 ms |
最大メモリ使用量 | 65536 KB |
セット
セット | 得点 | Cases | |
---|---|---|---|
1 | ALL | 0 / 400 | * |
テストケース
ファイル名 | 状態 | 実行時間 | メモリ使用量 | # |
---|---|---|---|---|
input01.in | MLE | 1000 ms | 65536 KB |
1
|
input02.in | MLE | 1000 ms | 65536 KB |
1
|
input03.in | MLE | 1000 ms | 65536 KB |
1
|
input04.in | MLE | 1000 ms | 65536 KB |
1
|
input05.in | MLE | 1000 ms | 65536 KB |
1
|
input06.in | MLE | 1000 ms | 65536 KB |
1
|
input07.in | MLE | 1000 ms | 65536 KB |
1
|
input08.in | MLE | 1000 ms | 65536 KB |
1
|
input09.in | MLE | 1000 ms | 65536 KB |
1
|
input10.in | MLE | 1000 ms | 65536 KB |
1
|
input11.in | MLE | 1000 ms | 65536 KB |
1
|
input12.in | WA | 37 ms | 27084 KB |
1
|
input13.in | WA | 65 ms | 57008 KB |
1
|
input14.in | MLE | 1000 ms | 65536 KB |
1
|
input15.in | WA | 20 ms | 8004 KB |
1
|
input16.in | MLE | 1000 ms | 65536 KB |
1
|
input17.in | WA | 36 ms | 21548 KB |
1
|
input18.in | MLE | 1000 ms | 65536 KB |
1
|
input19.in | MLE | 1000 ms | 65536 KB |
1
|
input20.in | MLE | 1000 ms | 65536 KB |
1
|
sample.in | WA | 19 ms | 6068 KB |
1
|