Java程序练习-Card Stacking

http://poj.grids.cn/practice/3405/
Card Stacking
时间限制: 20000ms 内存限制: 65536kB

描述
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.

输入
* Line 1: Three space-separated integers: N, K, and P

输出
* 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.

样例输入
3 9 2

样例输出
3
7
8

参考代码
import java.util.ArrayList; import java.util.Collections; import java.util.Iterator; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner cin = new Scanner(System.in); while(cin.hasNext()){ int n = cin.nextInt(); int k = cin.nextInt(); int p = cin.nextInt(); List<Integer> list = new ArrayList<Integer>(); List<Integer> list_o = new ArrayList<Integer>(); for(int i = 1;i < k + 1;++ i) list.add(i); int op = 1; int i = 0; while(!list.isEmpty()){ if(op % n == 0){ op = 1; list_o.add(list.get(i)); list.remove(i); }else{ list.remove(i); op ++; } i = i + p; if(list.size() > 0) i = i % list.size(); } Collections.sort(list_o); Iterator<Integer> it = list_o.iterator(); while(it.hasNext()){ System.out.println(it.next()); } } } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值