一堆石子,數量為奇數時可以取1
一個,數量為偶數時可以取一半。
玩家先手,求最多可以獲取的石子數量。
為了獲取最多的石子數量:
1
個,然後對手進入情況2
,我們只能取剩下的;1
個,即使得對手取時數量為奇數;同時使得我們取石子時數量為偶數。1
和4
是個特殊情況,需要特判一下。#include<bits/stdc++.h>
using namespace std;
using ll = long long;
int T;
ll n;
void solve(ll n) {
ll f = 0, s = 0; // To distinguish between first and second hands.
bool fs = true;
if (n & 1) n -= 1, fs = false;
while (n) {
if (n == 4) f += 3, s += 1, n = 0; // SpecialJudge
else if ((n / 2) % 2) { // TheFirstSituation
f += n / 2;
s += 1;
n = (n / 2) - 1;
} else { // TheSecondSituation
f += 1, s += 1;
n -= 2;
}
}
printf("%lld\n", fs ? f : (s + 1));
}
int main() {
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
#endif
cin >> T;
while (T--) {
cin >> n;
if (n == 1) cout << 1 << endl;
else solve(n);
}
return 0;
}