結果

問題 No.1676 Coin Trade (Single)
ユーザー merlinmerlin
提出日時 2021-09-10 22:48:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,196 bytes
コンパイル時間 2,417 ms
コンパイル使用メモリ 76,776 KB
実行使用メモリ 50,348 KB
最終ジャッジ日時 2024-06-12 02:25:05
合計ジャッジ時間 8,932 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,972 KB
testcase_01 AC 48 ms
37,068 KB
testcase_02 AC 47 ms
36,748 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 262 ms
47,568 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 49 ms
36,676 KB
testcase_14 WA -
testcase_15 AC 48 ms
36,764 KB
testcase_16 WA -
testcase_17 AC 53 ms
36,988 KB
testcase_18 AC 50 ms
36,972 KB
testcase_19 WA -
testcase_20 AC 49 ms
36,824 KB
testcase_21 AC 47 ms
36,692 KB
testcase_22 WA -
testcase_23 AC 50 ms
36,700 KB
testcase_24 AC 48 ms
36,700 KB
testcase_25 AC 50 ms
36,760 KB
testcase_26 AC 49 ms
36,776 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 50 ms
36,912 KB
testcase_30 AC 50 ms
36,700 KB
testcase_31 AC 49 ms
36,716 KB
testcase_32 AC 51 ms
36,592 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 377 ms
50,348 KB
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        String s[]=bu.readLine().split(" ");
        int n=Integer.parseInt(s[0]),k=Integer.parseInt(s[1]);

        int i,b[]=new int[n];
        long dp[][]=new long[n][2],ans=0;
        for(i=0;i<n;i++)
        {
            s=bu.readLine().split(" ");
            int c=Integer.parseInt(s[0]),m=Integer.parseInt(s[1]);
            if(i>0)
            {
                dp[i][0]=dp[i-1][0];    //0 means no coin bought to store
                dp[i][1]=dp[i-1][0]-c;  //1 means coin bought to store
            }
            else dp[i][1]=-c;

            int j,x;
            s=bu.readLine().split(" ");
            for(j=0;j<m;j++)
            {
                x=Integer.parseInt(s[j])-1;
                dp[i][0]=Math.max(dp[x][1]+c,dp[i][0]);
            }

            ans=Math.max(ans,dp[i][0]);
            ans=Math.max(ans,dp[i][1]);
            //System.out.println(dp[i][0]+" "+dp[i][1]);
        }
        System.out.println(ans);
    }
}
0