結果
問題 | No.626 Randomized 01 Knapsack |
ユーザー |
![]() |
提出日時 | 2017-12-15 21:14:46 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,124 bytes |
コンパイル時間 | 2,573 ms |
コンパイル使用メモリ | 78,408 KB |
実行使用メモリ | 58,704 KB |
最終ジャッジ日時 | 2024-12-15 08:13:23 |
合計ジャッジ時間 | 19,946 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 WA * 9 |
ソースコード
import java.io.*; import java.util.*; class Main { public static void main(String[] args) { MyScanner sc = new MyScanner(); out = new PrintWriter(new BufferedOutputStream(System.out)); int n=sc.nextInt(); long ww=sc.nextLong(); int U=40; int W=5001*U; long D=Math.max(1,ww/U/n); long[]v=new long[n],w=new long[n]; int[]vt=new int[n]; for(int i=0;i<n;++i){ v[i]=sc.nextInt(); w[i]=sc.nextInt(); vt[i]=w[i]>ww?W:(int)((w[i]+D-1)/D); } long[]dp=new long[W]; Arrays.fill(dp,0); for(int i=0;i<n;++i){ for(int j=W-1;j>=vt[i];--j) dp[j]=Math.max(dp[j],dp[j-vt[i]]+v[i]); } long ans=0; for(int i=0;i<W&&i*D<=ww;++i)ans=Math.max(ans,dp[i]); out.println(ans); out.close(); } // http://codeforces.com/blog/entry/7018 //-----------PrintWriter for faster output--------------------------------- public static PrintWriter out; //-----------MyScanner class for faster input---------- public static class MyScanner { BufferedReader br; StringTokenizer st; public MyScanner() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine(){ String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } } }