結果
問題 | No.850 企業コンテスト2位 |
ユーザー | uwi |
提出日時 | 2019-07-05 22:28:21 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 272 ms / 2,000 ms |
コード長 | 2,106 bytes |
コンパイル時間 | 3,884 ms |
コンパイル使用メモリ | 82,208 KB |
実行使用メモリ | 60,204 KB |
平均クエリ数 | 200.11 |
最終ジャッジ日時 | 2024-07-16 17:24:29 |
合計ジャッジ時間 | 12,285 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 195 ms
59,344 KB |
testcase_01 | AC | 183 ms
59,360 KB |
testcase_02 | AC | 180 ms
58,772 KB |
testcase_03 | AC | 180 ms
58,876 KB |
testcase_04 | AC | 167 ms
59,108 KB |
testcase_05 | AC | 165 ms
58,424 KB |
testcase_06 | AC | 166 ms
59,164 KB |
testcase_07 | AC | 216 ms
59,880 KB |
testcase_08 | AC | 227 ms
59,044 KB |
testcase_09 | AC | 222 ms
59,276 KB |
testcase_10 | AC | 258 ms
59,400 KB |
testcase_11 | AC | 257 ms
59,384 KB |
testcase_12 | AC | 258 ms
59,276 KB |
testcase_13 | AC | 272 ms
59,364 KB |
testcase_14 | AC | 255 ms
59,476 KB |
testcase_15 | AC | 255 ms
59,836 KB |
testcase_16 | AC | 246 ms
59,308 KB |
testcase_17 | AC | 270 ms
60,076 KB |
testcase_18 | AC | 262 ms
59,600 KB |
testcase_19 | AC | 254 ms
60,060 KB |
testcase_20 | AC | 252 ms
59,768 KB |
testcase_21 | AC | 260 ms
59,928 KB |
testcase_22 | AC | 252 ms
59,728 KB |
testcase_23 | AC | 258 ms
60,204 KB |
testcase_24 | AC | 258 ms
59,184 KB |
testcase_25 | AC | 270 ms
59,112 KB |
testcase_26 | AC | 255 ms
59,572 KB |
testcase_27 | AC | 189 ms
59,560 KB |
ソースコード
package contest190705; import java.io.PrintWriter; import java.util.Arrays; import java.util.Random; import java.util.Scanner; public class E3 { static Scanner in; static PrintWriter out; static String INPUT = ""; static int stronger(int x, int y) { out.println("? " + x + " " + y); out.flush(); return ni(); } static void solve() { int n = ni(); int[] can = new int[n]; for(int i = 0;i < n;i++)can[i] = i+1; int[][] hist = new int[334][]; int q = 0; while(can.length > 1) { int[] ncan = new int[can.length]; int p = 0; for(int i = 0;i < can.length;i+=2) { if(i+1 < can.length) { int res = stronger(can[i], can[i+1]); hist[q++] = new int[] {can[i], can[i+1], res}; ncan[p++] = res; }else { ncan[p++] = can[i]; } } can = Arrays.copyOf(ncan, p); } int[] xcan = new int[n]; int u = 0; for(int i = 0;i < q;i++) { if(hist[i][0] == can[0] || hist[i][1] == can[0]) { xcan[u++] = hist[i][0]^hist[i][1]^hist[i][2]; } } xcan = Arrays.copyOf(xcan, u); while(xcan.length > 1) { int[] ncan = new int[xcan.length]; int p = 0; for(int i = 0;i < xcan.length;i+=2) { if(i+1 < xcan.length) { int res = stronger(xcan[i], xcan[i+1]); ncan[p++] = res; }else { ncan[p++] = xcan[i]; } } xcan = Arrays.copyOf(ncan, p); } out.println("! " + xcan[0]); out.flush(); } public static int[] shuffle(int n, Random gen){ int[] a = new int[n]; for(int i = 0;i < n;i++)a[i] = i; for(int i = 0;i < n;i++){ int ind = gen.nextInt(n-i)+i; int d = a[i]; a[i] = a[ind]; a[ind] = d; } return a; } public static void main(String[] args) throws Exception { in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT); out = new PrintWriter(System.out); solve(); out.flush(); } static int ni() { return Integer.parseInt(in.next()); } static long nl() { return Long.parseLong(in.next()); } static double nd() { return Double.parseDouble(in.next()); } static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); } }