結果
問題 | No.1592 Tenkei 90 |
ユーザー | NASU41 |
提出日時 | 2021-05-08 00:46:10 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,298 bytes |
コンパイル時間 | 2,317 ms |
コンパイル使用メモリ | 78,568 KB |
実行使用メモリ | 102,832 KB |
最終ジャッジ日時 | 2024-07-01 14:18:52 |
合計ジャッジ時間 | 7,150 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import java.util.*; public class Main { private static boolean match(String s, int[] perm, String target){ if(s.length() != target.length()) return false; for(int i=0; i<s.length(); i++){ if(s.charAt(perm[i]) != target.charAt(i)) return false; } return true; } public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); String s = sc.next(); final String target = "kyoprotenkei90"; boolean found = false; //全ての並べ替え方を試します. 14! = 8.7E10[通り]程度なので間に合いません for(int[] perm: new Permutation(target.length())){ if(match(s, perm, target)) found = true; } System.out.println(found ? "Yes" : "No"); } } /*以下, ACLibraryForJavaを利用. 内部実装が気になる人以外は読まなくてOKです*/ /*ドキュメントはこちら→ https://github.com/NASU41/AtCoderLibraryForJava/tree/master/Permutation */ class Permutation implements java.util.Iterator<int[]>, Iterable<int[]> { private int[] next; public Permutation(int n) { next = java.util.stream.IntStream.range(0, n).toArray(); } @Override public boolean hasNext() { return next != null; } @Override public int[] next() { int[] r = next.clone(); next = nextPermutation(next); return r; } @Override public java.util.Iterator<int[]> iterator() { return this; } public static int[] nextPermutation(int[] a) { if (a == null || a.length < 2) return null; int p = 0; for (int i = a.length - 2; i >= 0; i--) { if (a[i] >= a[i + 1]) continue; p = i; break; } int q = 0; for (int i = a.length - 1; i > p; i--) { if (a[i] <= a[p]) continue; q = i; break; } if (p == 0 && q == 0) return null; int temp = a[p]; a[p] = a[q]; a[q] = temp; int l = p, r = a.length; while (++l < --r) { temp = a[l]; a[l] = a[r]; a[r] = temp; } return a; } }