結果
問題 | No.566 だいたい完全二分木 |
ユーザー | fjafjafja |
提出日時 | 2017-09-10 00:21:19 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 223 ms / 2,000 ms |
コード長 | 730 bytes |
コンパイル時間 | 3,616 ms |
コンパイル使用メモリ | 79,644 KB |
実行使用メモリ | 42,552 KB |
最終ジャッジ日時 | 2024-11-07 10:21:49 |
合計ジャッジ時間 | 6,221 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 145 ms
41,296 KB |
testcase_01 | AC | 146 ms
41,660 KB |
testcase_02 | AC | 148 ms
41,488 KB |
testcase_03 | AC | 135 ms
40,268 KB |
testcase_04 | AC | 151 ms
41,424 KB |
testcase_05 | AC | 153 ms
41,536 KB |
testcase_06 | AC | 165 ms
41,640 KB |
testcase_07 | AC | 172 ms
41,792 KB |
testcase_08 | AC | 184 ms
41,928 KB |
testcase_09 | AC | 206 ms
42,236 KB |
testcase_10 | AC | 223 ms
42,552 KB |
ソースコード
package yukicoder; import java.util.Scanner; public class N566 { static int[] h; static int K; public static void main(String[] args) { Scanner sc=new Scanner (System.in); K=sc.nextInt(); int p=(int)Math.pow(2, K); h=new int[p-1]; h[0]=p/2; tree(p/2,0,1); swap(h,0,p-2); for(int ans:h) { System.out.print(ans+" "); } } static void tree(int p,int k,int rank) { h[k]=p; //if((int)Math.pow(2, K-1)-1<=k||k<=(int)Math.pow(2,K)-2) if(rank==K) { return; } else { rank++; tree(p-(int)Math.pow(2, K-rank),2*k+1,rank); tree(p+(int)Math.pow(2,K-rank),2*k+2,rank); } } static void swap(int[] h,int n1,int n2) { int buf=h[n2]; h[n2]=h[n1]; h[n1]=buf; return ; } }