結果
問題 | No.527 ナップサック容量問題 |
ユーザー | asdf1 |
提出日時 | 2018-03-23 10:24:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,274 bytes |
コンパイル時間 | 1,315 ms |
コンパイル使用メモリ | 161,148 KB |
実行使用メモリ | 203,748 KB |
最終ジャッジ日時 | 2024-06-24 21:03:30 |
合計ジャッジ時間 | 3,622 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
15,584 KB |
testcase_01 | AC | 6 ms
19,808 KB |
testcase_02 | WA | - |
testcase_03 | AC | 6 ms
17,760 KB |
testcase_04 | AC | 3 ms
9,696 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 51 ms
177,888 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 61 ms
191,460 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 24 ms
93,532 KB |
testcase_15 | AC | 38 ms
146,916 KB |
testcase_16 | AC | 5 ms
17,632 KB |
testcase_17 | AC | 31 ms
124,392 KB |
testcase_18 | AC | 35 ms
138,468 KB |
testcase_19 | AC | 6 ms
21,852 KB |
testcase_20 | AC | 25 ms
99,684 KB |
testcase_21 | AC | 69 ms
203,748 KB |
testcase_22 | AC | 47 ms
177,124 KB |
testcase_23 | AC | 67 ms
200,808 KB |
testcase_24 | AC | 16 ms
58,720 KB |
testcase_25 | AC | 46 ms
173,924 KB |
testcase_26 | AC | 42 ms
169,828 KB |
testcase_27 | AC | 42 ms
170,084 KB |
testcase_28 | AC | 37 ms
146,788 KB |
testcase_29 | AC | 69 ms
202,084 KB |
testcase_30 | WA | - |
testcase_31 | AC | 31 ms
128,348 KB |
testcase_32 | AC | 38 ms
152,928 KB |
testcase_33 | AC | 32 ms
130,400 KB |
testcase_34 | AC | 40 ms
159,076 KB |
testcase_35 | AC | 40 ms
159,080 KB |
testcase_36 | AC | 5 ms
15,584 KB |
testcase_37 | AC | 29 ms
118,116 KB |
testcase_38 | AC | 38 ms
150,884 KB |
testcase_39 | AC | 34 ms
140,644 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(long long int (i)=0;(i)<(int)(n);(i)++) #define rrep(i,a,b) for(long long int i=(a);i<(b);i++) #define rrrep(i,a,b) for(long long int i=(a);i>=(b);i--) #define all(v) (v).begin(), (v).end() #define pb(q) push_back(q) #define P pair<int,int> #define Abs(a,b) max(a,b)-min(a,b) #define YES(condition) if(condition){cout << "YES" << endl;}else{cout << "NO" << endl;} #define Yes(condition) if(condition){cout << "Yes" << endl;}else{cout << "No" << endl;} #define Cout(x) cout<<(x)<<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 Size(n) (n).size() typedef long long ll; using namespace std; const int INF = 1e9,MOD = 1e9 + 7; const ll LINF = 1e18; /*--------------------------------------------------------------- long long int kaizyo(long long int hh){ cmp=1; while(hh>1){ cmp=(cmp*hh)%MOD; hh--; } return cmp; } long long int ruizyo(long long int aa, long long int bb){ if(aa==0){ return 1; } else if(aa%2==0){ long long int tt=ruizyo(aa/2,bb); return (tt*tt)%MOD; } else{ return (ruizyo(aa-1,bb)*bb)%MOD; } }フェルマ-のア --------------------------------------------------------------- while(x!=0){ sum+=x%10; / x/=10; } 各桁の和 --------------------------------------------------------------- pair<int,int> p[100000]; cin >> tmp; p[i]=make_pair(tmp,i); cout << p[i].second+1 << endl;//ペアの右側つまりiを出力 --------------------------------------------------------------- s.find(w[i])==string::npos findの使い方 --------------------------------------------------------------- for(int i=0;i<n;i++){ b[i]=x%2; x/=2; }二進数 --------------------------------------------------------------- bool f[100001];//1000000以下の素数を調べよう! rrep(i,2,100001){ f[i]=false; } rrep(i,2,100001){ if(!f[i]){ for(int j=i+i;j<=100000;j+=i){ f[j]=true; } } } for(int i=3;i<=100000;i+=2){ if(!f[i]){ c[i]++; } } --------------------------------------------------------------- visited=vector<vector<bool>>(10,vector<bool>(10,false));アを全部falseに --------------------------------------------------------------- long long gcd(long long aaa,long long bbb){ if(bbb==0){ return aaa; } return gcd(bbb,aaa%bbb); } long long lcm(long long aaa,long long bbb){ long long g = gcd(aaa,bbb); return aaa/g * bbb; }左から最大公約数と最小公倍数 --------------------------------------------------------------- long long int prime_cnt[10000]; for(int i=2;i*i<=n;i++){ while(n%i==0){ n/=i; prime_cnt[i]+=1; } if(n>1){ prime_cnt[n]+=1; break; } }ある数nを素因数分解しましょう ---------------------------------------------------------------*/ long long int n,cnt=0,ans=0,a,b,c,d,cmp,cmpp,m,h,w[1000000],v[1000000],x,y,sum=0,pos,dp[101][1000002]; int dy[]={1,0,-1,0}; int dx[]={0,1,0,-1}; string alph("abcdefghijklmnopqrstuvwxyz"),s; bool fl=true; //-------------------------↓↓↓↓↓↓------------------------ int main(void){ cin.tie(0); ios::sync_with_stdio(false); cin >> n; rep(i,n)cin>>v[i]>>w[i]; cin>>a; rep(i,n){ rep(j,100006){ if(j>=w[i]){ dp[i+1][j]=max(dp[i][j-w[i]]+v[i],dp[i][j]); } else{ dp[i+1][j]=dp[i][j]; } } } ll ansmin=INF; ll ansmax=0; rep(i,100006){ if(dp[n][i]==a){ ansmin=min(ansmin,i); ansmax=max(ansmax,i); } } if(ansmin==0){ Cout(1); } else{ Cout(ansmin); } if(ansmax>=999999){ Cout("inf"); } else{ Cout(ansmax); } return 0; }