您的位置:首页 > 其它

【CodeForces 333A】Secrets(模拟)

2017-03-10 21:46 387 查看


[align=center]A. Secrets[/align]
[align=center][/align]
[align=center][/align]
[align=center]time limit per test[/align]
[align=center]1 second[/align]
[align=center][/align]
[align=center][/align]
[align=center]memory limit per test[/align]
[align=center]256 megabytes[/align]
[align=center][/align]
[align=center][/align]
[align=center]input[/align]
[align=center]standard input[/align]
[align=center][/align]
[align=center][/align]
[align=center]output[/align]
[align=center]standard output[/align]

Gerald has been selling state secrets at leisure. All the secrets cost the same:
n marks. The state which secrets Gerald is selling, has no paper money, only coins. But there are coins of all positive integer denominations that are powers of three: 1 mark, 3 marks, 9 marks, 27 marks and so on. There
are no coins of other denominations. Of course, Gerald likes it when he gets money without the change. And all buyers respect him and try to give the desired sum without change, if possible. But this does not always happen.

One day an unlucky buyer came. He did not have the desired sum without change. Then he took out all his coins and tried to give Gerald a larger than necessary sum with as few coins as possible. What is the maximum number of coins he could get?

The formal explanation of the previous paragraph: we consider all the possible combinations of coins for which the buyer can not give Gerald the sum of
n marks without change. For each such combination calculate the minimum number of coins that can bring the buyer at least
n marks. Among all combinations choose the maximum of the minimum number of coins. This is the number we want.

Input
The single line contains a single integer n (1 ≤ n ≤ 1017).

Please, do not use the %lld specifier to read or write 64 bit integers in С++. It is preferred to use the
cin, cout streams or the
%I64d specifier.

Output
In a single line print an integer: the maximum number of coins the unlucky buyer could have paid with.

Examples

Input
1


Output
1


Input
4


Output
2


Note
In the first test case, if a buyer has exactly one coin of at least 3 marks, then, to give Gerald one mark, he will have to give this coin. In this sample, the customer can not have a coin of one mark, as in this case, he will be able to give the money to
Gerald without any change.

In the second test case, if the buyer had exactly three coins of 3 marks, then, to give Gerald 4 marks, he will have to give two of these coins. The buyer cannot give three coins as he wants to minimize the number of coins that he gives.

题目大意:有许多硬币,面值是3的次方,选一种使其和刚好大于n,但要使用的硬币数最多

思路:先选小面值,这样个数会多,不能选1,否则会刚好相等,不能使其和大于n。题目理解无能啊,原来一次只能选一种面值……

#include<iostream>
typedef long long ll;
using namespace std;
int main()
{
ll n,x=3;
cin>>n;
while(n%x==0) x*=3; //面值相同,只能选择一种
cout<<n/x+1<<endl;
return 0;
}

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: