A. Arena of Greed

194 篇文章 1 订阅
71 篇文章 0 订阅

链接:https://codeforces.com/problemset/problem/1425/A

Lately, Mr. Chanek frequently plays the game Arena of Greed. As the name implies, the game's goal is to find the greediest of them all, who will then be crowned king of Compfestnesia.

The game is played by two people taking turns, where Mr. Chanek takes the first turn. Initially, there is a treasure chest containing NN gold coins. The game ends if there are no more gold coins in the chest. In each turn, the players can make one of the following moves:

  • Take one gold coin from the chest.
  • Take half of the gold coins on the chest. This move is only available if the number of coins in the chest is even.

Both players will try to maximize the number of coins they have. Mr. Chanek asks your help to find the maximum number of coins he can get at the end of the game if both he and the opponent plays optimally.

Input

The first line contains a single integer TT (1≤T≤105)(1≤T≤105) denotes the number of test cases.

The next TT lines each contain a single integer NN (1≤N≤1018)(1≤N≤1018).

Output

TT lines, each line is the answer requested by Mr. Chanek.

Example

input

Copy

2
5
6

output

Copy

2
4

Note

For the first case, the game is as follows:

  1. Mr. Chanek takes one coin.
  2. The opponent takes two coins.
  3. Mr. Chanek takes one coin.
  4. The opponent takes one coin.

For the second case, the game is as follows:

  1. Mr. Chanek takes three coins.
  2. The opponent takes one coin.
  3. Mr. Chanek takes one coin.
  4. The opponent takes one coin.

思路:贪就完事了,特别注意一下4的情况即可

代码:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn=4e5+7;
const int mod=1e9+7;
char x;
ll n,t,s;
int main()
{
    cin>>t;
    while(t--)
    {
        cin>>n;
        s=0;
        int k=0;
        while(n)
        {
            if(k%2==0)
            {
                if(n%2==1)
                {
                    s++;
                    n--;
                }
                else
                {
                    if((n/2)%2==0&&n>4)
                    {
                        s++;
                        n--;
                    }
                    else
                    {
                        s+=n/2;
                        n/=2;
                    }
                }
            }
            else
            {
                if(n%2==1)
                    n--;
                else if((n/2)%2==0&&n>4)
                {
                    n--;
                }
                else
                    n/=2;

            }
            k++;
        }
        cout<<s<<endl;
    }
    return 0;
}

 

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值