POJ 1702 Eva's Balance
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 2889
Accepted: 1424
Description
Eva has a balance with 20 poises. The weights of the poises are 1, 3, 9, 27,...,3^19. Eva asserts that she has a way to measure any object whose weight is an integer from 1 to (3^20-1)/2. Assuming that Eva has placed an object with the weight in this range on the left tray of the balance, your task is to place the proper poises on the proper trays so as to weigh the object out.
Input
The first line is an integer T (1 <= T <= 20), which shows the number of the test cases. Each of the following T lines contains an integer W (1 <= W <= (3^20-1)/2), expressing the weight of an object.
Output
For each test case print a line, showing the weights of the poises on the left tray and the right tray. Use a space to separate the left tray and the right tray. The poises on the same tray are arranged in the increasing order, and a comma separates every two of them. If there is no poise on the tray, output "empty".
Sample Input
3
9
5
20
Sample Output
empty 9
1,3 9
1,9 3,27
Source
POJ Monthly--2004.07.18
/* 먼저 입력수num을 3진법 티나리로 변환한 다음에 낮은 위치에서 높은 위치로 3진법을 처리합니다. 티나리[i]의 값은 네 가지 가능성이 있습니다. 1) 0, 건너뛰기 2) 1, 3^i를 오른쪽 서열 2) 2, 3^i를 왼쪽 서열에 넣고 티나리[i+1]+3)3을 티나리[i+1]++;왜 표시할 수 있는 최대수(3^20-1)/2는 모두 20자리이기 때문에 최대는 전체 1의 수만 표시할 수 있다. 20개의 1이 이미 가장 크다. 임의의 위치에 1을 더하면 20자리를 초과하여 표시해야 한다. 등비수열을 활용하여 합쳐서 표시할 수 있는 최대수는 (3^20-1)/2*/#include
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
localStorage에 객체를 추가하는 방법은 무엇입니까?이 노트에서는 localStorage에 객체를 삽입하는 방법을 보여드리겠습니다. 경우에 따라 로컬 스토리지 또는 세션 스토리지에 데이터를 개체로 저장해야 할 수 있습니다. 어떻게 이것을 달성할 수 있습니까? 객체가 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.