首页 > 代码库 > XDOJ_1008_水
XDOJ_1008_水
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_水
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。