[Lucky Algorithm] Utopian Tree (64/77)
Utopian Tree (Hacker Rank)
The Utopian Tree goes through 2 cycles of growth every year. Each spring, it doubles in height. Each summer, its height increases by 1 meter.
Laura plants a Utopian Tree sapling with a height of 1 meter at the onset of spring. How tall will her tree be after growth cycles?
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Solution {
static int utopianTree(int n) {
int result = 0;
if(n%2 == 0)
result = (int)(Math.pow(2, n/2) - 1)*2 + 1;
else
result = (int)(Math.pow(2, n/2 + 1) - 1)*2;
return result;
}
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int t = in.nextInt();
for(int a0 = 0; a0 < t; a0++){
int n = in.nextInt();
int result = utopianTree(n);
System.out.println(result);
}
in.close();
}
}
행운의 77문제 프로젝트
행운의 77문제 프로젝트는 한 달동안 알고리즘 문제 77개를 푸는 프로젝트입니다.
(한달은 이미 많이 지났지만...그래도 77문제는 될 수 있도록!)