POJ 3629 Card Stacking

来源:互联网 发布:mac免费解压rar 编辑:程序博客网 时间:2024/06/06 01:28

Card Stacking

Description

Bessie is playing a card game with her N-1 (2 ≤ N ≤ 100) cow friends using a deck with K (N ≤ K ≤ 100,000; K is a multiple of N) cards. The deck contains M = K/N "good" cards and K-M "bad" cards. Bessie is the dealer and, naturally, wants to deal herself all of the "good" cards. She loves winning.

Her friends suspect that she will cheat, though, so they devise a dealing system in an attempt to prevent Bessie from cheating. They tell her to deal as follows:

1. Start by dealing the card on the top of the deck to the cow to her right

2. Every time she deals a card, she must place the next P (1 ≤ P ≤ 10) cards on the bottom of the deck; and

3. Continue dealing in this manner to each player sequentially in a counterclockwise manner

Bessie, desperate to win, asks you to help her figure out where she should put the "good" cards so that she gets all of them. Notationally, the top card is card #1, next card is #2, and so on.

Input

* Line 1: Three space-separated integers: NK, and P

Output

* Lines 1..M: Positions from top in ascending order in which Bessie should place "good" cards, such that when dealt, Bessie will obtain all good cards.

Sample Input

3 9 2

Sample Output

378
题目大意:有N只牛和K张卡牌,卡牌中有K / N张好牌和K - K / N张坏牌,其中一只牛bessie想得到所有的好牌,它的牛同伴为了防止biesse作弊,制定了以下发牌规则

(1)从bessie右手边开始发牌,每个人一张

(2)每次bessie发完牌之后都要将牌堆顶部的P张牌放到牌底

(3)按逆时针顺序重复这个过程,直到将牌发完

bessie非常想赢,它向你求助,应该把好牌放到哪些位置才能拿到所有好牌。

解题思路:使用队列模拟发牌过程,开一个数组存储bessie得到的牌的序号,排序输出即可。不得不说STL真是个好东西啊。。。

代码如下:

#include <cstdio>#include <queue>#include <algorithm>using namespace std;int bessie[50005];int main(){int n,k,p,m;int good,bad;int i,j,l;while(scanf("%d %d %d",&n,&k,&p) != EOF){queue<int> que;for(i = 1;i <= k;i++)que.push(i);j = 1,l = 0;while(que.size()){if(j % n == 0){bessie[l] = que.front();l++;}que.pop();for(i = 0;i < p;i++){que.push(que.front());que.pop();}j++;}sort(bessie,bessie + l);for(i = 0;i < l;i++)printf("%d\n",bessie[i]);}return 0;} 

0 0
原创粉丝点击