hdu 5090 수열 욕심 보너스 1 ~ n

1728 단어
http://acm.hdu.edu.cn/showproblem.php?pid=5090
한 단락 의 길 이 를 n 수열 로 주 고 임의의 숫자 에 k 의 배 수 를 더 할 수 있 느 냐 고 물 으 면 다 한 후에 마침 1 ~ n 밖 에 안 됩 니 다.
욕심, 먼저 정렬, 순서대로 1 ~ n 을 추가 합 니 다. 주어진 수열 에서 표시 되 지 않 은 수 를 찾 을 수 있 는 지 볼 때마다 현재 i 에 추가 할 수 있 습 니 다. 할 수 있 으 면 표시 합 니 다. 마지막 으로 완성 할 수 있 는 것 은 Jerry 입 니 다.
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <string>
#include <queue>
#include <map>
#include <iostream>
#include <algorithm>
using namespace std;
#define RD(x) scanf("%d",&x)
#define RD2(x,y) scanf("%d%d",&x,&y)
#define RD3(x,y,z) scanf("%d%d%d",&x,&y,&z)
#define clr0(x) memset(x,0,sizeof(x))
#define clr1(x) memset(x,-1,sizeof(x))
#define eps 1e-9
const double pi = acos(-1.0);
typedef long long LL;
typedef unsigned long long ULL;
const int modo = 1e9 + 7;
const int INF = 0x3f3f3f3f;
const int inf = 0x3fffffff;
const LL _inf = 1e18;
const int maxn = 105,maxm = 10005;
int p[maxn],n,k;
bool vis[maxn];
void work()
{
    clr0(vis);
    RD2(n,k);
    for(int i = 1;i <= n;++i)
        RD(p[i]);
    sort(p+1,p+n+1);
    for(int i = 1;i <= n;++i){
        bool flag = false;
        for(int j = 1;j <= n && p[j] <= i;++j){
            if(!vis[j] && i - p[j] >= 0 && (i - p[j]) % k == 0){
                flag = true;
                vis[j] = true;
                break;
            }
        }
        if(!flag){
            puts("Tom");
            return ;
        }
    }
    puts("Jerry");
    return;
}
int main()
{
    int _;RD(_);
    while(_--){
        work();
    }
    return 0;
}

좋은 웹페이지 즐겨찾기