結果

問題 No.844 split game
ユーザー 37zigen37zigen
提出日時 2020-03-25 15:22:21
言語 Java
(openjdk 23)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 3,640 bytes
コンパイル時間 2,374 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 66,256 KB
最終ジャッジ日時 2025-01-01 23:54:23
合計ジャッジ時間 13,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
57,132 KB
testcase_01 AC 168 ms
61,372 KB
testcase_02 AC 339 ms
62,512 KB
testcase_03 AC 252 ms
60,396 KB
testcase_04 AC 147 ms
55,940 KB
testcase_05 AC 298 ms
60,780 KB
testcase_06 AC 136 ms
55,816 KB
testcase_07 AC 147 ms
59,996 KB
testcase_08 AC 102 ms
53,332 KB
testcase_09 AC 221 ms
60,112 KB
testcase_10 AC 313 ms
62,272 KB
testcase_11 AC 286 ms
66,044 KB
testcase_12 AC 276 ms
62,628 KB
testcase_13 AC 162 ms
57,108 KB
testcase_14 AC 177 ms
61,584 KB
testcase_15 AC 340 ms
66,244 KB
testcase_16 AC 339 ms
66,140 KB
testcase_17 AC 302 ms
66,256 KB
testcase_18 AC 303 ms
66,176 KB
testcase_19 AC 312 ms
66,084 KB
testcase_20 AC 385 ms
66,248 KB
testcase_21 AC 299 ms
66,180 KB
testcase_22 AC 339 ms
66,032 KB
testcase_23 AC 69 ms
51,604 KB
testcase_24 AC 106 ms
53,324 KB
testcase_25 AC 88 ms
52,976 KB
testcase_26 AC 61 ms
51,328 KB
testcase_27 AC 95 ms
53,032 KB
testcase_28 AC 56 ms
51,128 KB
testcase_29 AC 94 ms
53,192 KB
testcase_30 AC 88 ms
53,292 KB
testcase_31 AC 92 ms
53,248 KB
testcase_32 AC 57 ms
51,088 KB
testcase_33 AC 102 ms
53,236 KB
testcase_34 AC 79 ms
53,004 KB
testcase_35 AC 94 ms
53,048 KB
testcase_36 AC 93 ms
53,352 KB
testcase_37 AC 117 ms
54,024 KB
testcase_38 AC 94 ms
55,536 KB
testcase_39 AC 123 ms
58,612 KB
testcase_40 AC 101 ms
55,128 KB
testcase_41 AC 50 ms
51,072 KB
testcase_42 AC 49 ms
51,048 KB
testcase_43 AC 50 ms
51,012 KB
testcase_44 AC 49 ms
51,080 KB
testcase_45 AC 48 ms
51,080 KB
testcase_46 AC 56 ms
50,948 KB
testcase_47 AC 48 ms
51,092 KB
testcase_48 AC 47 ms
50,728 KB
testcase_49 AC 48 ms
51,072 KB
testcase_50 AC 47 ms
50,944 KB
testcase_51 AC 49 ms
51,152 KB
testcase_52 AC 47 ms
51,044 KB
testcase_53 AC 49 ms
50,876 KB
testcase_54 AC 52 ms
51,140 KB
testcase_55 AC 52 ms
51,188 KB
testcase_56 AC 53 ms
51,020 KB
testcase_57 AC 48 ms
51,068 KB
testcase_58 AC 47 ms
50,960 KB
testcase_59 AC 49 ms
51,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.Arrays;
import java.util.Comparator;
import java.util.NoSuchElementException;

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		long t = System.currentTimeMillis();
		new Main().run();
		System.err.println(System.currentTimeMillis() - t);
	}
	
	void run() {
		FastScanner sc = new FastScanner();
		int N=sc.nextInt();
		int M=sc.nextInt();
		long A=sc.nextLong();
		long[][] dp=new long[N+1][2];//dp[i]:=(i-1,i)を繋ぐ辺が(1:ある,0:ない)まで決定したときの最大値
		for(int i=0;i<dp.length;++i)for(int j=0;j<dp[i].length;++j)dp[i][j]=Long.MIN_VALUE/3;
		long[][] query=new long[M][3];
		for(int i=0;i<M;++i) {
			query[i][0]=sc.nextLong()-1;//l
			query[i][1]=sc.nextLong()-1;//r
			query[i][2]=sc.nextLong();//p
		}
		Arrays.sort(query, new Comparator<long[]>() {
			@Override
			public int compare(long[] o1, long[] o2) {
				return Long.compare(o1[0], o2[0]);
			}
		});
		int p=0;
		dp[0][1]=0;
		for(int i=0;i<=N;++i) {//dp[i]まで確定
			if(i>0)dp[i][0]=Math.max(dp[i][0], Math.max(dp[i-1][0],dp[i-1][1]));
			if(i>0)dp[i][1]=Math.max(dp[i][1], Math.max(dp[i-1][0],dp[i-1][1])-A);
			while(p<query.length&&query[p][0]<=i) {
				int l=(int)query[p][0],r=(int)query[p][1];
				dp[r+1][1]=Math.max(dp[r+1][1], dp[l][1]-(r+1==N?0:A)+query[p][2]);
				if(l>0)dp[r+1][1]=Math.max(dp[r+1][1], dp[l-1][0]-A-(r+1==N?0:A)+query[p][2]);
				++p;
			}
		}
		System.out.println(Math.max(dp[N][1],dp[N][0]));
	}

	
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
	
	
class FastScanner {
    private final InputStream in = System.in;
    private final byte[] buffer = new byte[1024];
    private int ptr = 0;
    private int buflen = 0;
    private boolean hasNextByte() {
        if (ptr < buflen) {
            return true;
        }else{
            ptr = 0;
            try {
                buflen = in.read(buffer);
            } catch (IOException e) {
                e.printStackTrace();
            }
            if (buflen <= 0) {
                return false;
            }
        }
        return true;
    }
    private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;}
    private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;}
    private void skipUnprintable() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}
    public boolean hasNext() { skipUnprintable(); return hasNextByte();}
    public String next() {
        if (!hasNext()) throw new NoSuchElementException();
        StringBuilder sb = new StringBuilder();
        int b = readByte();
        while(isPrintableChar(b)) {
            sb.appendCodePoint(b);
            b = readByte();
        }
        return sb.toString();
    }
    public long nextLong() {
        if (!hasNext()) throw new NoSuchElementException();
        long n = 0;
        boolean minus = false;
        int b = readByte();
        if (b == '-') {
            minus = true;
            b = readByte();
        }
        if (b < '0' || '9' < b) {
            throw new NumberFormatException();
        }
        while(true){
            if ('0' <= b && b <= '9') {
                n *= 10;
                n += b - '0';
            }else if(b == -1 || !isPrintableChar(b)){
                return minus ? -n : n;
            }else{
                throw new NumberFormatException();
            }
            b = readByte();
        }
    }
    
    public int nextInt() {
    	return (int)nextLong();
    }
}
0