結果

問題 No.626 Randomized 01 Knapsack
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2017-12-15 21:18:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,217 bytes
コンパイル時間 2,782 ms
コンパイル使用メモリ 78,416 KB
実行使用メモリ 58,452 KB
最終ジャッジ日時 2024-12-15 08:15:36
合計ジャッジ時間 15,058 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,472 KB
testcase_01 AC 50 ms
50,576 KB
testcase_02 AC 53 ms
50,208 KB
testcase_03 AC 55 ms
50,188 KB
testcase_04 AC 69 ms
51,204 KB
testcase_05 AC 75 ms
51,280 KB
testcase_06 WA -
testcase_07 AC 114 ms
52,228 KB
testcase_08 AC 137 ms
52,036 KB
testcase_09 AC 207 ms
53,084 KB
testcase_10 AC 265 ms
53,084 KB
testcase_11 AC 823 ms
55,336 KB
testcase_12 AC 1,022 ms
55,104 KB
testcase_13 AC 215 ms
57,404 KB
testcase_14 AC 498 ms
55,360 KB
testcase_15 WA -
testcase_16 AC 849 ms
55,168 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 974 ms
55,304 KB
testcase_21 AC 175 ms
54,684 KB
testcase_22 AC 697 ms
55,100 KB
testcase_23 AC 848 ms
55,420 KB
testcase_24 AC 136 ms
54,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 p=0;
        long[]v=new long[n],w=new long[n];
        for(int i=0;i<n;++i){
            v[p]=sc.nextInt();
            w[p]=sc.nextInt();
            if(w[i]>ww)continue;
            p++;
        }
        long D=Math.max(1,(ww+U*p-1)/U/p);
        int[]vt=new int[p];
        for(int i=0;i<p;++i)
            vt[i]=(int)((w[i]+D-1)/D);
        int W=p*U+1;
        long[]dp=new long[W];
        Arrays.fill(dp,0);
        for(int i=0;i<p;++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;
        }
    }
}
0