結果
問題 | No.1400 すごろくで世界旅行 |
ユーザー | CuriousFairy315 |
提出日時 | 2019-12-31 12:31:44 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,078 bytes |
コンパイル時間 | 3,476 ms |
コンパイル使用メモリ | 77,972 KB |
実行使用メモリ | 59,252 KB |
最終ジャッジ日時 | 2024-11-28 15:51:17 |
合計ジャッジ時間 | 9,078 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
54,188 KB |
testcase_01 | WA | - |
testcase_02 | AC | 137 ms
54,116 KB |
testcase_03 | AC | 179 ms
54,412 KB |
testcase_04 | WA | - |
testcase_05 | AC | 152 ms
54,152 KB |
testcase_06 | AC | 214 ms
54,652 KB |
testcase_07 | AC | 241 ms
55,140 KB |
testcase_08 | AC | 184 ms
54,428 KB |
testcase_09 | AC | 180 ms
54,420 KB |
testcase_10 | AC | 197 ms
54,408 KB |
testcase_11 | AC | 177 ms
54,388 KB |
testcase_12 | AC | 373 ms
58,236 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | AC | 607 ms
58,792 KB |
testcase_18 | RE | - |
testcase_19 | AC | 134 ms
54,028 KB |
testcase_20 | WA | - |
ソースコード
package yukicoder_3785; import java.util.BitSet; import java.util.Scanner; public class Main2 { public static void main(String[] args) { new Main2(); } public Main2() { try (Scanner sc = new Scanner(System.in)) { int V, D; V = sc.nextInt(); D = sc.nextInt(); BitSet[] graph = new BitSet[V]; for (int i = 0;i < V;++ i) { graph[i] = new BitSet(V); String E = sc.next(); for (int j = 0;j < V;++ j) graph[i].set(j, E.charAt(j) == '1'); } boolean ans = graph[0].cardinality() > 0; for (int i = 0;i < V;++ i) { BitSet now = (BitSet)graph[i].clone(), one = new BitSet(V), two = new BitSet(V), three = new BitSet(V); one.set(i); for (int j = 1;j < D;++ j) { BitSet check = (BitSet)now.clone(); check.xor(two); if (check.isEmpty()) break; two = (BitSet)one.clone(); for (int k = check.nextSetBit(0);k >= 0;k = check.nextSetBit(k + 1)) one.or(graph[k]); three = now; now = one; one = three; } ans &= now.cardinality() == V; } System.out.println(ans ? "Yes" : ":("); } } }