結果
問題 | No.334 門松ゲーム |
ユーザー | yuya178 |
提出日時 | 2017-06-20 18:11:47 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 104 ms / 2,000 ms |
コード長 | 3,317 bytes |
コンパイル時間 | 2,723 ms |
コンパイル使用メモリ | 80,328 KB |
実行使用メモリ | 53,468 KB |
最終ジャッジ日時 | 2024-10-02 07:34:57 |
合計ジャッジ時間 | 4,467 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 96 ms
53,468 KB |
testcase_01 | AC | 55 ms
50,340 KB |
testcase_02 | AC | 56 ms
50,000 KB |
testcase_03 | AC | 101 ms
52,328 KB |
testcase_04 | AC | 99 ms
52,576 KB |
testcase_05 | AC | 102 ms
53,008 KB |
testcase_06 | AC | 93 ms
52,780 KB |
testcase_07 | AC | 56 ms
50,268 KB |
testcase_08 | AC | 102 ms
53,008 KB |
testcase_09 | AC | 57 ms
50,180 KB |
testcase_10 | AC | 58 ms
50,448 KB |
testcase_11 | AC | 104 ms
53,080 KB |
testcase_12 | AC | 89 ms
53,100 KB |
testcase_13 | AC | 89 ms
52,844 KB |
testcase_14 | AC | 57 ms
50,424 KB |
testcase_15 | AC | 91 ms
52,760 KB |
ソースコード
import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Arrays; import java.util.InputMismatchException; import java.io.OutputStream; import java.util.StringTokenizer; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.HashMap; import java.util.Map; import java.util.ArrayList; import java.util.List; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; InputReader in = new InputReader(inputStream); PrintWriter out = new PrintWriter(outputStream); Task solver = new Task(); solver.solve(1, in, out); out.close(); } static class Task { public void solve(int testNumber, InputReader in, PrintWriter out) { int N = in.nextInt(); int[] K = new int[N]; for(int i=0; i<N; i++){ K[i] = in.nextInt(); } if(game(K,true,N)) out.println(-1); } public static boolean game(int arr[], boolean state,int N){ if(arr.length<3) return state; for(int i=0; i<arr.length; i++){ for(int j=i+1; j<arr.length; j++){ for(int k=j+1; k<arr.length; k++){ if(arr[i]<=arr[j]&&arr[j]<=arr[k]) continue; else if (arr[i]>=arr[j]&&arr[j]>=arr[k]) continue; else{ int[] array = new int[arr.length-3]; int n=0; for(int m=0; m<arr.length; m++){ if(m!=i&&m!=j&&m!=k){ array[n] = arr[m]; n++; } } if(game(array,!state,N)==state) continue; if(game(array,!state,N)==!state){ if(arr.length==N){ System.out.println(i+" "+j+" "+k); } return !state; } } } } } return state; } } static class InputReader { public BufferedReader reader; public StringTokenizer tokenizer; public InputReader(InputStream stream) { reader = new BufferedReader(new InputStreamReader(stream), 32768); tokenizer = null; } public String next() { while (tokenizer == null || !tokenizer.hasMoreTokens()) { try { tokenizer = new StringTokenizer(reader.readLine()); } catch (IOException e) { throw new RuntimeException(e); } } return tokenizer.nextToken(); } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } } }