結果

問題 No.844 split game
ユーザー 37zigen37zigen
提出日時 2020-03-25 15:22:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 3,640 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 78,624 KB
実行使用メモリ 65,496 KB
最終ジャッジ日時 2024-06-10 11:47:53
合計ジャッジ時間 13,003 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
55,888 KB
testcase_01 AC 156 ms
58,588 KB
testcase_02 AC 314 ms
60,636 KB
testcase_03 AC 264 ms
60,608 KB
testcase_04 AC 145 ms
54,596 KB
testcase_05 AC 286 ms
60,740 KB
testcase_06 AC 136 ms
55,404 KB
testcase_07 AC 141 ms
59,308 KB
testcase_08 AC 110 ms
52,156 KB
testcase_09 AC 264 ms
60,604 KB
testcase_10 AC 298 ms
60,800 KB
testcase_11 AC 268 ms
64,400 KB
testcase_12 AC 213 ms
58,660 KB
testcase_13 AC 140 ms
55,976 KB
testcase_14 AC 177 ms
60,356 KB
testcase_15 AC 295 ms
64,992 KB
testcase_16 AC 303 ms
64,960 KB
testcase_17 AC 283 ms
64,856 KB
testcase_18 AC 359 ms
65,496 KB
testcase_19 AC 300 ms
64,876 KB
testcase_20 AC 275 ms
64,940 KB
testcase_21 AC 284 ms
64,956 KB
testcase_22 AC 300 ms
64,700 KB
testcase_23 AC 68 ms
50,632 KB
testcase_24 AC 95 ms
51,956 KB
testcase_25 AC 85 ms
51,744 KB
testcase_26 AC 59 ms
49,932 KB
testcase_27 AC 92 ms
51,880 KB
testcase_28 AC 58 ms
50,032 KB
testcase_29 AC 92 ms
51,836 KB
testcase_30 AC 94 ms
51,756 KB
testcase_31 AC 92 ms
51,732 KB
testcase_32 AC 56 ms
50,184 KB
testcase_33 AC 101 ms
52,416 KB
testcase_34 AC 91 ms
52,068 KB
testcase_35 AC 90 ms
52,064 KB
testcase_36 AC 80 ms
51,984 KB
testcase_37 AC 117 ms
52,492 KB
testcase_38 AC 101 ms
53,852 KB
testcase_39 AC 119 ms
57,444 KB
testcase_40 AC 96 ms
54,068 KB
testcase_41 AC 49 ms
49,796 KB
testcase_42 AC 48 ms
50,160 KB
testcase_43 AC 48 ms
50,128 KB
testcase_44 AC 47 ms
49,668 KB
testcase_45 AC 49 ms
50,208 KB
testcase_46 AC 49 ms
49,812 KB
testcase_47 AC 49 ms
49,840 KB
testcase_48 AC 49 ms
49,800 KB
testcase_49 AC 51 ms
49,936 KB
testcase_50 AC 51 ms
49,916 KB
testcase_51 AC 52 ms
50,112 KB
testcase_52 AC 49 ms
49,996 KB
testcase_53 AC 48 ms
49,940 KB
testcase_54 AC 49 ms
50,076 KB
testcase_55 AC 48 ms
50,068 KB
testcase_56 AC 50 ms
49,764 KB
testcase_57 AC 51 ms
50,120 KB
testcase_58 AC 50 ms
49,940 KB
testcase_59 AC 49 ms
49,992 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