結果
問題 | No.566 だいたい完全二分木 |
ユーザー | YamaKasa |
提出日時 | 2018-09-25 01:08:46 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 216 ms / 2,000 ms |
コード長 | 1,003 bytes |
コンパイル時間 | 2,266 ms |
コンパイル使用メモリ | 79,744 KB |
実行使用メモリ | 54,588 KB |
最終ジャッジ日時 | 2024-09-24 18:55:09 |
合計ジャッジ時間 | 4,937 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
53,904 KB |
testcase_01 | AC | 144 ms
54,264 KB |
testcase_02 | AC | 143 ms
54,032 KB |
testcase_03 | AC | 147 ms
54,372 KB |
testcase_04 | AC | 150 ms
54,200 KB |
testcase_05 | AC | 149 ms
54,044 KB |
testcase_06 | AC | 157 ms
54,196 KB |
testcase_07 | AC | 177 ms
54,316 KB |
testcase_08 | AC | 182 ms
54,184 KB |
testcase_09 | AC | 199 ms
54,588 KB |
testcase_10 | AC | 216 ms
54,528 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int K = scan.nextInt(); scan.close(); if(K == 2) { System.out.println("1 3 2"); System.exit(0); } int a = (int)Math.pow(2, K) - 1; int[]n = new int[a]; n[0] = (int)Math.pow(2,K - 1); int t = 2; int r = 2; int l = 1; int idx = 0; int idx2 = 0; for(int i = 1; i < a; i++) { if(i < r) { if(i == l) { n[i] = n[idx] / 2; idx2 = idx; idx = i; l = l + t; }else { n[i] = n[i - 1] + n[idx2]; } }else if(i == r) { n[i] = n[i - 1] + n[idx2]; t = t * 2; r = r + t; } } int t1 = (int)Math.pow(2, K - 2) - 1; int t2 = (int)Math.pow(2, K - 1) - 1; int t3 = t2 + 1; int b1 = n[t1]; int b2 = n[t2]; int b3 = n[t3]; n[t1] = b3; n[t3] = b1; for(int i = 0; i < a; i++) { if(i == a - 1) { System.out.println(n[i]); }else { System.out.print(n[i] + " "); } } } }