1. 程式人生 > >51nod 1066 Bash遊戲 Bash博弈

51nod 1066 Bash遊戲 Bash博弈

個人 input txt 如果 n) cpp log -- can

1066 Bash遊戲技術分享 基準時間限制:1 秒 空間限制:131072 KB 分值: 0 難度:基礎題 技術分享 收藏 技術分享 關註 有一堆石子共有N個。A B兩個人輪流拿,A先拿。每次最少拿1顆,最多拿K顆,拿到最後1顆石子的人獲勝。假設A B都非常聰明,拿石子的過程中不會出現失誤。給出N和K,問最後誰能贏得比賽。 例如N = 3,K = 2。無論A如何拿,B都可以拿到最後1顆石子。 Input
第1行:一個數T,表示後面用作輸入測試的數的數量。(1 <= T <= 10000)
第2 - T + 1行:每行2個數N,K。中間用空格分隔。(1 <= N,K <= 10^9)
Output
共T行,如果A獲勝輸出A,如果B獲勝輸出B。
Input示例
4
3 2
4 2
7 3
8 3
Output示例
B
A
A
B


最簡單的Bash博弈的原型題
#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <vector>
#include <iomanip>
#include <math.h>
#include <map>
using namespace std;
#define FIN     freopen("input.txt","r",stdin);
#define FOUT    freopen("output.txt","w",stdout);
#define INF     0x3f3f3f3f
#define INFLL   0x3f3f3f3f3f3f3f
#define lson    l,m,rt<<1
#define rson    m+1,r,rt<<1|1
typedef long long LL;
typedef pair<int, int> PII;
using namespace std;

int n, k;

int main() {
    //FIN
    int T;
    scanf("%d", &T);
    while(T--) {
        scanf("%d%d", &n, &k);
        if(n % (k + 1) != 0) printf("A\n");
        else printf("B\n");
    }
    return 0;
}

  

51nod 1066 Bash遊戲 Bash博弈