天梯L1-049 天梯賽座位分佈

題意就是按順序分配,不過到最後只有一隊的時候就要隔開坐,也就是當上一個分配的人是本校的時候,須要特判。node

我還覺得是從當前的人開始隔開坐。。。的確是沒理解題意。附上測試數據。ios

#include <iostream>
#include <cstdio>
#include <cstring>
#include <queue>
#include <algorithm>
#define ll long long

using namespace std;

int n;
struct node
{
    int m,cnt;
    int pos[11][11];
    node()
    {
        m=cnt=0;
    }
} nodes[110];

int main()
{
    int i,j,k,last;
    while(scanf("%d",&n)!=EOF)
    {
        int sum=0;
        for(i=0; i<n; i++)
        {
            scanf("%d",&nodes[i].m);
            sum+=nodes[i].m;
            nodes[i].cnt=0;
        }
        int amt;
        for(i=1; i<=sum*10;)
        {
            amt=0;
            for(j=0; j<n; j++)
                if(nodes[j].cnt==nodes[j].m*10)
                    amt++;
                else
                    last=j;
            for(j=0; j<n; j++)
            {
                if(nodes[j].cnt==nodes[j].m*10)
                {
                    continue;
                }
                nodes[j].pos[nodes[j].cnt/10][nodes[j].cnt%10]=i;
                nodes[j].cnt++;
                i++;
                if(nodes[j].cnt==nodes[j].m*10)
                    amt++;
                else
                    last=j;
                if(amt==n-1)//排到最後一個學校的時候
                {
                    if(i==2)//特判初始只有一個學校的時候
                    {
                        nodes[last].cnt=0;
                        i=1;
                    }
                    if(nodes[last].cnt%10)//最後剩下幾隊還多一人時要隔開一個座位
                    {
                        nodes[last].pos[nodes[last].cnt/10][nodes[last].cnt%10]=i;
                        nodes[last].cnt++;
                        i++;
                        i++;
                    }
                    for(j=nodes[last].cnt/10; j<nodes[last].m; j++)
                    {
                        for(k=0; k<10; k++,i+=2)
                            nodes[last].pos[j][k]=i;
                    }
                    break;
                }
            }

        }
        for(i=0; i<n; i++)
        {
            printf("#%d\n",i+1);
            for(j=0; j<nodes[i].m; j++)
            {
                for(k=0; k<9; k++)
                    printf("%d ",nodes[i].pos[j][k]);
                printf("%d\n",nodes[i].pos[j][k]);
            }
        }
    }
    return 0;
}


/*


2
1 2

2
2 1

2
1 0

3
3 1 1

3
3 4 2

#1
1 4 7 10 13 16 19 22 25 28
31 34 37 40 43 46 49 52 55 58
61 63 65 67 69 71 73 75 77 79
#2
2 5 8 11 14 17 20 23 26 29
32 35 38 41 44 47 50 53 56 59
62 64 66 68 70 72 74 76 78 80
82 84 86 88 90 92 94 96 98 100
#3
3 6 9 12 15 18 21 24 27 30
33 36 39 42 45 48 51 54 57 60


*/

 

此次天梯賽校內選拔37人,排名25,別人拿的分是個人兩倍。真的是太菜了。以前作過的原題都沒過。測試

相關文章
相關標籤/搜索