結果
問題 | No.282 おもりと天秤(2) |
ユーザー | 37zigen |
提出日時 | 2020-04-19 07:45:38 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,815 bytes |
コンパイル時間 | 2,872 ms |
コンパイル使用メモリ | 83,008 KB |
実行使用メモリ | 86,724 KB |
平均クエリ数 | 51.08 |
最終ジャッジ日時 | 2024-07-17 02:40:13 |
合計ジャッジ時間 | 15,302 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 206 ms
71,896 KB |
testcase_01 | AC | 562 ms
75,164 KB |
testcase_02 | AC | 400 ms
74,976 KB |
testcase_03 | AC | 340 ms
72,528 KB |
testcase_04 | AC | 314 ms
72,840 KB |
testcase_05 | AC | 477 ms
76,064 KB |
testcase_06 | AC | 633 ms
75,676 KB |
testcase_07 | AC | 316 ms
72,740 KB |
testcase_08 | AC | 627 ms
75,148 KB |
testcase_09 | AC | 222 ms
72,588 KB |
testcase_10 | AC | 4,754 ms
86,724 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
import java.util.ArrayList; import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { new Main().run(); } void remove(boolean[][] g, int[] out_deg, boolean[] removed, int v) { assert(!removed[v]); int n=g.length; for (int i=0;i<n;++i) { if (g[i][v]) { --out_deg[i]; } } removed[v]=true; } void run() { Scanner sc=new Scanner(System.in); int N=sc.nextInt(); boolean[][] g=new boolean[N][N]; boolean[] removed=new boolean[N]; int[] out_deg=new int[N]; ArrayList<Integer> ans=new ArrayList<>(); while (true) { ArrayList<Integer> list=new ArrayList<>(); do { for (int i=0;i<N;++i) { if (out_deg[i]==0 && !removed[i]) { list.add(i); } } if (list.size()==1) { ans.add(list.get(0)); remove(g, out_deg, removed, list.get(0)); list.remove(0); } else if(list.size()==0) { System.out.print("! "); for (int i=0;i<N;++i) { System.out.print((ans.get(i)+1)+(i==N-1?"\n":" ")); } return; } } while (list.size()==0); for (int i=0;i<N;++i) { if (!(out_deg[i]==0 && !removed[i])) list.add(i); } for (int i=0;i<N;++i) list.add(-1); System.out.println("? "); for (int i=0;i<N;++i) { System.out.print((list.get(2*i)+1)+" "+(list.get(2*i+1)+1)+(i==N-1?"\n":" ")); } for (int i=0;i<N;++i) { String op=sc.next(); int a=list.get(2*i),b=list.get(2*i+1); if (a!=-1 && b!=-1 && op.equals(">") && !g[a][b]) { g[a][b]=true; if (!removed[a] && !removed[b]) ++out_deg[a]; } else if(a!=-1 && b!=-1 && op.contentEquals("<") && !g[b][a]) { g[b][a]=true; if (!removed[a] && !removed[b]) ++out_deg[b]; } } } } void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));} }