Double Up
시간 제한: 3000ms메모리 제한: 1024MB출처: ICPC Greater New York 2023BOJ 30529
문제
A Double Up game consists of a sequence of numbers , where each is a power of two. In one move one can either remove one of the numbers, or merge two identical adjacent numbers into a single number of twice the value. For example, for sequence , we can merge the s and obtain , then merge the s and obtain , then remove the , and, finally, merge the s, obtaining a single final number, . We play the game until a single number remains. What is the largest number we can obtain?
입력
The input consists of two lines. The first line contains (). The second line contains numbers , where for each .
출력
The ouput consists of a single line containing the largest number that can be obtained from the input sequence .
예제
예제 1
입력
5 4 2 2 1 8
출력
16
코드를 제출하려면 로그인하세요.