UVA - 133 The Dole Queue 单纯模拟:1A

#include <map>
#include<cstdlib>
#include <cstdio>
#include <string>
#include <vector>
#include <cstring>
#include <fstream>
#include <iostream>
#include <algorithm>
using namespace std;
    #define LOCAL
int a[21];

void go(int A,int B,int N)
{
    int lef=N;
    int P1=0,P2=N+1;
    while(lef>0)
    {
        if(lef!=N)
            printf(",");
         int AA=A; int BB=B;
         while(AA){
            int tmpA=(++P1)%(N);
            if(tmpA==0) tmpA=N;
            if( a[tmpA] ) AA--;
            P1=tmpA;
         }
         while(BB){
            int tmp=((--P2)+N+1)%(N+1);
            if( a[tmp] ) BB--;
            P2=tmp;
         }
         if(P1!=P2) {
            printf("%3d%3d",P1,P2);
            lef-=2;
         }
         else {
            printf("%3d",P1);
            lef--;
         }
         a[P1]=0;a[P2]=0;
    }//while
    cout<<endl;
}

int main()
{
#ifdef LOCAL
    //freopen("in1.txt","r",stdin);
    ifstream cin("in1.txt");
#endif
    int n,m,k;
    while(cin>>n>>k>>m && n!=0){
        for(int i=1; i<n+1; i++){
            a[i]=i;
        }
        go(k,m,n);
    }//while
    return 0;
}

思路单一,以后类似的1A的题目 不再挂上来了,除非有更好的解法借鉴再粘上来,供日后自己参考。



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值