码迷,mamicode.com
首页 > 其他好文 > 详细

XDOJ_1008_水

时间:2016-10-12 07:01:38      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

http://acm.xidian.edu.cn/problem.php?id=1008

 

约瑟夫环,小数据,水过。

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;

int n,k;
int nextt[200005],lastt[200005];

int main()
{
    scanf("%d%d",&n,&k);
    for(int i = 1;i < n;i++)    nextt[i] = i+1;
    for(int i = 2;i <= n;i++)    lastt[i] = i-1;
    nextt[n] = 1;
    lastt[1] = n;
    printf("%d",k);
    nextt[lastt[k]] = nextt[k];
    lastt[nextt[k]] = lastt[k];
    int cnt = n-1,now = nextt[k];
    while(cnt)
    {
        int left = (k-1)%cnt;
        while(left--)    now = nextt[now];
        printf(" %d",now);
        nextt[lastt[now]] = nextt[now];
        lastt[nextt[now]] = lastt[now];
        now = nextt[now];
        cnt--;
    }
    putchar(\n);
    return 0;
}

 

XDOJ_1008_水

标签:

原文地址:http://www.cnblogs.com/zhurb/p/5951355.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!