結果
問題 | No.2408 Lakes and Fish |
ユーザー | tenten |
提出日時 | 2024-07-31 11:49:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 658 ms / 2,000 ms |
コード長 | 1,621 bytes |
コンパイル時間 | 2,350 ms |
コンパイル使用メモリ | 79,280 KB |
実行使用メモリ | 66,164 KB |
最終ジャッジ日時 | 2024-07-31 11:49:22 |
合計ジャッジ時間 | 13,504 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
50,352 KB |
testcase_01 | AC | 53 ms
50,256 KB |
testcase_02 | AC | 52 ms
50,232 KB |
testcase_03 | AC | 52 ms
50,376 KB |
testcase_04 | AC | 503 ms
66,164 KB |
testcase_05 | AC | 514 ms
64,576 KB |
testcase_06 | AC | 515 ms
65,460 KB |
testcase_07 | AC | 658 ms
66,036 KB |
testcase_08 | AC | 595 ms
64,936 KB |
testcase_09 | AC | 587 ms
65,572 KB |
testcase_10 | AC | 597 ms
66,084 KB |
testcase_11 | AC | 449 ms
60,508 KB |
testcase_12 | AC | 480 ms
62,464 KB |
testcase_13 | AC | 316 ms
57,720 KB |
testcase_14 | AC | 444 ms
61,232 KB |
testcase_15 | AC | 541 ms
62,608 KB |
testcase_16 | AC | 350 ms
59,012 KB |
testcase_17 | AC | 306 ms
57,320 KB |
testcase_18 | AC | 438 ms
62,688 KB |
testcase_19 | AC | 541 ms
61,428 KB |
testcase_20 | AC | 406 ms
59,084 KB |
testcase_21 | AC | 548 ms
63,668 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int m = sc.nextInt(); TreeSet<Integer> lakes = new TreeSet<>(); while (n-- > 0) { lakes.add(sc.nextInt()); } lakes.add(Integer.MIN_VALUE / 2); lakes.add(Integer.MAX_VALUE); long ans = 0; while (m-- > 0) { int x = sc.nextInt(); int b = sc.nextInt(); int w = sc.nextInt(); ans += Math.max(b, w - Math.min(x - lakes.floor(x), lakes.ceiling(x) - x)); } System.out.println(ans); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }