結果
問題 | No.674 n連勤 |
ユーザー | tenten |
提出日時 | 2021-12-06 14:09:43 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 326 ms / 2,000 ms |
コード長 | 1,838 bytes |
コンパイル時間 | 2,374 ms |
コンパイル使用メモリ | 78,968 KB |
実行使用メモリ | 58,708 KB |
最終ジャッジ日時 | 2024-07-07 09:03:09 |
合計ジャッジ時間 | 6,242 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
50,060 KB |
testcase_01 | AC | 56 ms
50,288 KB |
testcase_02 | AC | 55 ms
50,196 KB |
testcase_03 | AC | 57 ms
50,160 KB |
testcase_04 | AC | 56 ms
50,072 KB |
testcase_05 | AC | 57 ms
50,032 KB |
testcase_06 | AC | 57 ms
49,960 KB |
testcase_07 | AC | 57 ms
50,300 KB |
testcase_08 | AC | 57 ms
50,372 KB |
testcase_09 | AC | 56 ms
50,396 KB |
testcase_10 | AC | 56 ms
50,252 KB |
testcase_11 | AC | 143 ms
52,184 KB |
testcase_12 | AC | 147 ms
52,092 KB |
testcase_13 | AC | 252 ms
55,608 KB |
testcase_14 | AC | 260 ms
55,048 KB |
testcase_15 | AC | 249 ms
55,324 KB |
testcase_16 | AC | 326 ms
58,648 KB |
testcase_17 | AC | 324 ms
58,708 KB |
testcase_18 | AC | 305 ms
56,504 KB |
testcase_19 | AC | 260 ms
55,572 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); long d = sc.nextLong(); int n = sc.nextInt(); TreeMap<Long, Long> days = new TreeMap<>(); StringBuilder sb = new StringBuilder(); long max = 0; for (int i = 0; i < n; i++) { long left = sc.nextLong(); long right = sc.nextLong(); Long prev = days.floorKey(left); if (prev != null && days.get(prev) >= left - 1) { left = prev; right = Math.max(right, days.get(prev)); } days.put(left, right); Long next; while ((next = days.higherKey(left)) != null) { if (right + 1 < next) { break; } right = Math.max(right, days.get(next)); days.put(left, right); days.remove(next); } max = Math.max(max, right - left + 1); sb.append(max).append("\n"); } System.out.print(sb); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }