結果
問題 | No.360 増加門松列 |
ユーザー | mitsuo |
提出日時 | 2016-05-04 17:58:58 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 145 ms / 2,000 ms |
コード長 | 1,836 bytes |
コンパイル時間 | 1,964 ms |
コンパイル使用メモリ | 79,752 KB |
実行使用メモリ | 56,404 KB |
最終ジャッジ日時 | 2024-06-06 12:47:27 |
合計ジャッジ時間 | 5,787 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
56,036 KB |
testcase_01 | AC | 140 ms
56,064 KB |
testcase_02 | AC | 145 ms
56,392 KB |
testcase_03 | AC | 132 ms
56,404 KB |
testcase_04 | AC | 135 ms
44,240 KB |
testcase_05 | AC | 138 ms
44,228 KB |
testcase_06 | AC | 143 ms
44,800 KB |
testcase_07 | AC | 134 ms
44,304 KB |
testcase_08 | AC | 135 ms
44,684 KB |
testcase_09 | AC | 134 ms
44,620 KB |
testcase_10 | AC | 130 ms
43,664 KB |
testcase_11 | AC | 129 ms
43,692 KB |
testcase_12 | AC | 134 ms
44,400 KB |
testcase_13 | AC | 130 ms
44,176 KB |
testcase_14 | AC | 129 ms
44,408 KB |
testcase_15 | AC | 133 ms
44,952 KB |
testcase_16 | AC | 135 ms
45,092 KB |
testcase_17 | AC | 137 ms
44,600 KB |
testcase_18 | AC | 142 ms
44,428 KB |
testcase_19 | AC | 136 ms
44,408 KB |
testcase_20 | AC | 133 ms
44,216 KB |
testcase_21 | AC | 133 ms
43,648 KB |
ソースコード
import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] input = new String[1]; int i = 0; while (sc.hasNext()) { input[i] = sc.nextLine(); i++; } String[] d = input[0].split(" "); int[] dl = new int[d.length]; for (i = 0; i < d.length; i++) { dl[i] = Integer.valueOf(d[i]); } System.out.println(solve(dl)); sc.close(); } public static String solve(int[] d) { List<Integer> t = new ArrayList<>(); for (int dd : d) { t.add(dd); } List<List<Integer>> candidate = getPermulation(t); // System.out.println(candidate.size()); for (List<Integer> c : candidate) { if (isMatch(toArr(c))) { return "YES"; } } return "NO"; } private static int[] toArr(List<Integer> c) { int[] r = new int[c.size()]; for (int i = 0; i < c.size(); i++) { r[i] = c.get(i); } return r; } public static List<List<Integer>> getPermulation(List<Integer> d) { int LL = d.size(); List<List<Integer>> ret = new ArrayList<List<Integer>>(); if (LL == 1) { ret.add(d); } else { for (int i = 0; i < LL; i++) { List<Integer> r = new ArrayList<>(d); int keep = r.remove(i); List<List<Integer>> rr = getPermulation(r); for (int k = 0; k < rr.size(); k++) { rr.get(k).add(keep); } ret.addAll(rr); } } return ret; } private static boolean isMatch(int[] c) { for (int i = 0; i < c.length - 2; i++) { int a0 = i; int a1 = i + 1; int a2 = i + 2; if (c[a0] == c[a1] || c[a1] == c[a2] || c[a2] == c[a0]) { return false; } if (c[a0] > c[a2]) { return false; } if ((c[a0] < c[a1] && c[a1] < c[a2]) || (c[a2] < c[a1] && c[a1] < c[a0])) { return false; } } return true; } }