POJ1591 M*A*S*H (JAVA)

2021-06-30 20:05

阅读:645

标签:void   rds   print   asn   card   line   测试   return   循环   

这水题,真的坑

测试数据最后有空行,如果用sc.hasNextLine()判断,会RE

要改为sc.hasNext()

搞了我一上午,烦死

import java.util.*;
public class POJ1591 {
    static Scanner sc = new Scanner(System.in);
    static int N=20;
    static class Item{
        int name;
        Item next;
        Item pre;
    }
    static Item first;
    static Item last;
    static int[] cards;
    static void count(int total,int left){
        if(totalleft){
            Item item=first.next;
            card=cards[icard++];

            while (item!=null){
                //每次向前走cards[icard]步
                int i;
                for(i=1;i

  

POJ1591 M*A*S*H (JAVA)

标签:void   rds   print   asn   card   line   测试   return   循环   

原文地址:https://www.cnblogs.com/StackNeverOverFlow/p/9639554.html


评论


亲,登录后才可以留言!