結果
問題 | No.5016 Worst Mayor |
ユーザー | EvbCFfp1XB |
提出日時 | 2023-04-29 15:47:59 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 538 ms / 2,000 ms |
コード長 | 7,570 bytes |
コンパイル時間 | 4,006 ms |
コンパイル使用メモリ | 91,996 KB |
実行使用メモリ | 79,844 KB |
スコア | 10,763,094,244 |
平均クエリ数 | 400.00 |
最終ジャッジ日時 | 2023-04-29 15:49:05 |
合計ジャッジ時間 | 34,442 ms |
ジャッジサーバーID (参考情報) |
judge12 / judge15 |
純コード判定しない問題か言語 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 517 ms
74,400 KB |
testcase_01 | AC | 484 ms
76,360 KB |
testcase_02 | AC | 538 ms
75,060 KB |
testcase_03 | AC | 506 ms
76,608 KB |
testcase_04 | AC | 496 ms
76,824 KB |
testcase_05 | AC | 533 ms
75,592 KB |
testcase_06 | AC | 488 ms
76,176 KB |
testcase_07 | AC | 493 ms
78,112 KB |
testcase_08 | AC | 498 ms
77,804 KB |
testcase_09 | AC | 505 ms
76,592 KB |
testcase_10 | AC | 493 ms
78,596 KB |
testcase_11 | AC | 491 ms
76,648 KB |
testcase_12 | AC | 520 ms
76,876 KB |
testcase_13 | AC | 497 ms
77,376 KB |
testcase_14 | AC | 524 ms
77,120 KB |
testcase_15 | AC | 503 ms
77,820 KB |
testcase_16 | AC | 491 ms
76,608 KB |
testcase_17 | AC | 514 ms
77,796 KB |
testcase_18 | AC | 492 ms
77,176 KB |
testcase_19 | AC | 519 ms
79,844 KB |
testcase_20 | AC | 499 ms
77,652 KB |
testcase_21 | AC | 535 ms
76,892 KB |
testcase_22 | AC | 492 ms
79,636 KB |
testcase_23 | AC | 504 ms
75,332 KB |
testcase_24 | AC | 517 ms
74,396 KB |
testcase_25 | AC | 506 ms
77,060 KB |
testcase_26 | AC | 522 ms
76,200 KB |
testcase_27 | AC | 505 ms
77,044 KB |
testcase_28 | AC | 527 ms
78,668 KB |
testcase_29 | AC | 485 ms
78,836 KB |
testcase_30 | AC | 506 ms
78,712 KB |
testcase_31 | AC | 502 ms
76,372 KB |
testcase_32 | AC | 514 ms
78,496 KB |
testcase_33 | AC | 536 ms
78,296 KB |
testcase_34 | AC | 514 ms
77,432 KB |
testcase_35 | AC | 534 ms
74,772 KB |
testcase_36 | AC | 516 ms
78,520 KB |
testcase_37 | AC | 534 ms
77,100 KB |
testcase_38 | AC | 507 ms
79,760 KB |
testcase_39 | AC | 490 ms
76,708 KB |
testcase_40 | AC | 519 ms
77,312 KB |
testcase_41 | AC | 494 ms
77,028 KB |
testcase_42 | AC | 515 ms
76,552 KB |
testcase_43 | AC | 479 ms
76,164 KB |
testcase_44 | AC | 525 ms
76,872 KB |
testcase_45 | AC | 502 ms
76,888 KB |
testcase_46 | AC | 520 ms
77,112 KB |
testcase_47 | AC | 517 ms
75,560 KB |
testcase_48 | AC | 497 ms
76,984 KB |
testcase_49 | AC | 517 ms
74,392 KB |
ソースコード
import java.util.PriorityQueue; import java.util.Scanner; public final class Main { private static final int S = 14; private int N; private int T; private int[] A; private int[] B; private int[] C; private int[] D; static final Watch watch = new Watch(); static final XorShift rng = new XorShift(System.nanoTime()); public static final void main(final String[] args) { new Main().run(); } private void run() { try (final Scanner in = new Scanner(System.in)) { N = in.nextInt(); watch.init(); T = in.nextInt(); A = new int[N]; B = new int[N]; C = new int[N]; D = new int[N]; for (int i = 0; i < N; i++) { A[i] = in.nextInt() - 1; B[i] = in.nextInt() - 1; C[i] = in.nextInt() - 1; D[i] = in.nextInt() - 1; } int[][] counts = new int[2 * S][2 * S]; for (int i = 0; i < N; i++) { int minR = 2 * Math.min(A[i], C[i]); int maxR = 2 * Math.max(A[i], C[i]); int minC = 2 * Math.min(B[i], D[i]); int maxC = 2 * Math.max(B[i], D[i]); for (int r = minR; r <= maxR; r++) { for (int c = minC; c <= maxC; c++) { counts[r][c]++; } } } PriorityQueue<Pair<Integer, Integer>> pq = new PriorityQueue<>(); for (int r = 0; r < 2 * S; r++) { for (int c = 0; c < 2 * S; c++) { if ((r + c) % 2 == 0) { continue; } final int min = 4; final int max = 22; final int center = 14; pq.add(new Pair<Integer, Integer>((((r == center) && c >= min && c <= max) || ((c == min || c == max) && r >= min && r <= max) ? 100 : 1) * -counts[r][c], (r << 16) | (c))); } } int num_higways = 0; int prev_capital = (int) 1e6; int prev_action = 0; for (int t = 0; t < T; t++) { int capital = in.nextInt(); int collaborators = in.nextInt(); if (capital < 0 && collaborators < 0) { break; } int highway_revenue = capital - prev_capital + (prev_action == 3 ? -50000 : 0); int highway_cost = (int) (1 + 1e7 / Math.sqrt(collaborators)); if (t < 21) { int action = 2; System.out.println(action); System.out.flush(); prev_capital = capital; prev_action = action; continue; } final boolean build_highway_is_better = num_higways == 0 || (highway_revenue / num_higways) * (num_higways + 1) * (T - 1 - t) - highway_cost > highway_revenue * (T - 1 - t); if (capital >= highway_cost && build_highway_is_better) { num_higways++; int action = 1; int v = pq.poll().second.intValue(); int r = v >>> 16; int c = v & ((1 << 16) - 1); if (r % 2 == 0) { assert c % 2 == 1; int r2 = 1 + r / 2; int c2 = 1 + (c - 1) / 2; int c3 = 1 + (c + 1) / 2; System.out.println(action + " " + r2 + " " + c2 + " " + r2 + " " + c3); System.out.flush(); prev_capital = capital; prev_action = action; continue; } else { assert c % 2 == 0; int r2 = 1 + (r - 1) / 2; int r3 = 1 + (r + 1) / 2; int c2 = 1 + c / 2; System.out.println(action + " " + r2 + " " + c2 + " " + r3 + " " + c2); System.out.flush(); prev_capital = capital; prev_action = action; continue; } } int action = 3; System.out.println(action); System.out.flush(); prev_capital = capital; prev_action = action; } } catch (final Exception e) { e.printStackTrace(); } } } class Watch { private long start; public Watch() { init(); } public double getSecond() { return (System.nanoTime() - start) * 1e-9; } public void init() { init(System.nanoTime()); } private void init(long start) { this.start = start; } public String getSecondString() { return toString(getSecond()); } public static final String toString(double second) { if (second < 60) { return String.format("%5.2fs", second); } else if (second < 60 * 60) { int minute = (int) (second / 60); return String.format("%2dm%2ds", minute, (int) (second % 60)); } else { int hour = (int) (second / (60 * 60)); int minute = (int) (second / 60); return String.format("%2dh%2dm%2ds", hour, minute % (60), (int) (second % 60)); } } } class XorShift { private int w = 88675123; private int x = 123456789; private int y = 362436069; private int z = 521288629; public XorShift(long l) { x = (int) l; } public int nextInt() { final int t = x ^ (x << 11); x = y; y = z; z = w; w = w ^ (w >>> 19) ^ (t ^ (t >>> 8)); return w; } public long nextLong() { return ((long) nextInt() << 32) ^ (long) nextInt(); } public double nextDouble() { return (nextInt() >>> 1) * 4.6566128730773926E-10; } public int nextInt(int n) { return (int) (n * nextDouble()); } } class Pair<T extends Comparable<T>, S> implements Comparable<Pair<T, S>> { public T first; public S second; public Pair(T t, S s) { this.first = t; this.second = s; } private int hash = 0; @Override public int hashCode() { if (hash == 0) { final int prime = 31; int result = 1; result = prime * result + ((first == null) ? 0 : first.hashCode()); result = prime * result + ((second == null) ? 0 : second.hashCode()); hash = result; } return hash; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; Pair<T, S> other = (Pair<T, S>) obj; if (first == null) { if (other.first != null) return false; } else if (!first.equals(other.first)) return false; if (second == null) { if (other.second != null) return false; } else if (!second.equals(other.second)) return false; return true; } @Override public int compareTo(Pair<T, S> o) { return first.compareTo(o.first); } }