結果

問題 No.674 n連勤
ユーザー tentententen
提出日時 2020-09-03 18:48:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 751 ms / 2,000 ms
コード長 1,216 bytes
コンパイル時間 2,691 ms
コンパイル使用メモリ 79,772 KB
実行使用メモリ 50,720 KB
最終ジャッジ日時 2024-11-23 21:14:45
合計ジャッジ時間 10,867 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,156 KB
testcase_01 AC 138 ms
41,092 KB
testcase_02 AC 134 ms
41,064 KB
testcase_03 AC 136 ms
41,144 KB
testcase_04 AC 133 ms
41,228 KB
testcase_05 AC 135 ms
41,256 KB
testcase_06 AC 137 ms
41,448 KB
testcase_07 AC 139 ms
41,100 KB
testcase_08 AC 134 ms
41,304 KB
testcase_09 AC 135 ms
41,076 KB
testcase_10 AC 133 ms
41,160 KB
testcase_11 AC 271 ms
46,032 KB
testcase_12 AC 285 ms
46,216 KB
testcase_13 AC 613 ms
48,872 KB
testcase_14 AC 655 ms
48,972 KB
testcase_15 AC 671 ms
49,288 KB
testcase_16 AC 751 ms
50,592 KB
testcase_17 AC 743 ms
50,720 KB
testcase_18 AC 665 ms
48,612 KB
testcase_19 AC 721 ms
48,948 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