結果

問題 No.674 n連勤
ユーザー tentententen
提出日時 2020-09-03 18:48:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 650 ms / 2,000 ms
コード長 1,216 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 79,016 KB
実行使用メモリ 61,500 KB
最終ジャッジ日時 2024-05-03 01:18:19
合計ジャッジ時間 9,150 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,892 KB
testcase_01 AC 119 ms
54,136 KB
testcase_02 AC 114 ms
53,740 KB
testcase_03 AC 128 ms
53,940 KB
testcase_04 AC 111 ms
53,348 KB
testcase_05 AC 106 ms
52,744 KB
testcase_06 AC 110 ms
53,108 KB
testcase_07 AC 113 ms
53,004 KB
testcase_08 AC 122 ms
54,036 KB
testcase_09 AC 124 ms
54,248 KB
testcase_10 AC 116 ms
54,168 KB
testcase_11 AC 235 ms
58,004 KB
testcase_12 AC 248 ms
58,084 KB
testcase_13 AC 552 ms
59,312 KB
testcase_14 AC 522 ms
59,092 KB
testcase_15 AC 561 ms
59,192 KB
testcase_16 AC 650 ms
61,500 KB
testcase_17 AC 624 ms
60,932 KB
testcase_18 AC 564 ms
59,432 KB
testcase_19 AC 535 ms
58,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	long d = sc.nextLong();
    	int q = sc.nextInt();
    	TreeMap<Long, Long> works = new TreeMap<>();
    	works.put(-10L, -10L);
    	works.put(d + 10, d + 10);
    	long max = 0;
    	StringBuilder sb = new StringBuilder();
    	for (int i = 0; i < q; i++) {
    	    long left = sc.nextLong();
    	    long right = sc.nextLong();
    	    long key;
    	    while (true) {
    	        key = works.floorKey(left);
    	        if (works.get(key) + 1 >= left) {
    	            right = Math.max(works.get(key), right);
    	            left = key;
    	            works.remove(key);
    	        } else {
    	            break;
    	        }
    	    }
    	    while (true) {
    	        key = works.higherKey(left);
    	        if (right + 1 >= key) {
    	            right = Math.max(works.get(key), right);
    	            works.remove(key);
    	        } else {
    	            break;
    	        }
    	    }
    	    works.put(left, right);
    	    max = Math.max(max, right - left + 1);
    	    sb.append(max).append("\n");
    	}
    	System.out.print(sb);
	}
}
0