結果
問題 | No.1465 Archaea |
ユーザー | tenten |
提出日時 | 2021-11-29 20:18:00 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,889 bytes |
コンパイル時間 | 2,263 ms |
コンパイル使用メモリ | 78,660 KB |
実行使用メモリ | 55,144 KB |
最終ジャッジ日時 | 2024-07-02 13:23:34 |
合計ジャッジ時間 | 5,137 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
50,168 KB |
testcase_01 | WA | - |
testcase_02 | AC | 52 ms
50,392 KB |
testcase_03 | AC | 52 ms
50,284 KB |
testcase_04 | AC | 48 ms
50,168 KB |
testcase_05 | AC | 48 ms
50,388 KB |
testcase_06 | AC | 50 ms
50,032 KB |
testcase_07 | AC | 91 ms
51,556 KB |
testcase_08 | AC | 50 ms
50,392 KB |
testcase_09 | AC | 94 ms
51,544 KB |
testcase_10 | WA | - |
testcase_11 | AC | 99 ms
51,600 KB |
testcase_12 | AC | 52 ms
50,452 KB |
testcase_13 | AC | 113 ms
53,860 KB |
testcase_14 | AC | 99 ms
51,556 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 128 ms
54,500 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 134 ms
55,144 KB |
testcase_22 | AC | 139 ms
54,988 KB |
testcase_23 | AC | 50 ms
50,384 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int k = sc.nextInt(); int[] costs = new int[n + 1]; Arrays.fill(costs, Integer.MAX_VALUE); PriorityQueue<Path> queue = new PriorityQueue<>(); queue.add(new Path(0, 0)); while (queue.size() > 0) { Path p = queue.poll(); if (p.idx > n || p.value > k || costs[p.idx] <= p.value) { continue; } costs[p.idx] = p.value; queue.add(new Path(p.idx + 3, p.value + 1)); queue.add(new Path(p.idx * 2, p.value + 1)); } if (costs[n] > k) { System.out.println("YES"); } else { System.out.println("NO"); } } static class Path implements Comparable<Path> { int idx; int value; public Path(int idx, int value) { this.idx = idx; this.value = value; } public int compareTo(Path another) { return value - another.value; } } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }