记录编号 193271 评测结果 AAAAAAAAAAA
题目名称 [USACO Dec07] 洗牌作弊 最终得分 100
用户昵称 Gravatardevil 是否通过 通过
代码语言 C++ 运行时间 0.020 s
提交时间 2015-10-14 15:17:10 内存使用 1.46 MiB
显示代码纯文本
#include <cstdlib>
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <map>
#include <stack>
#include <vector>
#include <queue>
#include <ctime>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef unsigned int uint;
const int inf=1061109567;
const int maxn=100010;
const int maxm=20;
const int mod=7777777;

struct node
{
    int from;
    int next;
} a[maxn];

int ans[maxn];

int main()
{
    freopen("cheat.in","r",stdin);
    freopen("cheat.out","w",stdout);
    //clock_t st=clock();
    int n,k,p;scanf("%d%d%d",&n,&k,&p);
    for(int i=1;i<=k;i++) a[i].from=i-1,a[i].next=i+1;
    a[1].from=k;a[k].next=1;
    int lpos,pos=1,cnt=0;
    for(int i=1;i<=k;i++)
    {
        lpos=pos;
        a[a[lpos].from].next=a[lpos].next;
        a[a[lpos].next].from=a[lpos].from;
        for(int j=0;j<=p;j++) pos=a[pos].next;
        if(i%n==0) ans[cnt++]=lpos;
    }
    sort(ans,ans+cnt);
    for(int i=0;i<cnt;i++) printf("%d\n",ans[i]);
    //clock_t ed=clock();
    //printf("\nTime used : %.5lf Ms\n",double(ed-st)/CLOCKS_PER_SEC);
    return 0;
}