当前位置: 代码迷 >> 综合 >> A. Arena of Greed
  详细解决方案

A. Arena of Greed

热度:92   发布时间:2024-02-24 10:40:14.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--;}elsen/=2;}k++;}cout<<s<<endl;}return 0;
}