#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的题目 不再挂上来了,除非有更好的解法借鉴再粘上来,供日后自己参考。