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

UVa 133 - The Dole Queue

时间:2016-04-21 01:17:17      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:

入门题...

#include <cstdio>
#include <iostream>
#include <cstring>
using namespace std;
int n,k,m,num;
int a[25];
int find(int pos,int x,int m)
{
    while(m--)
    { 
        pos=(pos+x+n-1)%n+1;
        while(a[pos]) pos=(pos+x+n-1)%n+1;
        //cout<<pos<<endl;
    }
    return pos;
}
int main()
{
    while(~scanf("%d%d%d",&n,&k,&m)&&(n+k+m))
    {
        memset(a,0,sizeof(a));
        num=n;
        int p1=n,p2=1;
        while(num)
        {
            p1=find(p1,1,k);
            p2=find(p2,-1,m);
            printf("%3d",p1); num--;
            if(p1!=p2) { printf("%3d",p2); num--; }
            a[p1]=a[p2]=1;
            if(num) printf(",");
        }
        puts("");
    }
    return 0;
} 

 

UVa 133 - The Dole Queue

标签:

原文地址:http://www.cnblogs.com/nicetomeetu/p/5414927.html

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