哎,被这道水题虐住了。。
A. Candy Bags
Time Limit : 2000/1000ms (Java/Other) Memory Limit : 524288/262144K (Java/Other)
Total Submission(s) : 13 Accepted Submission(s) : 3
Gerald has n younger brothers and their number happens to be even. One day he bought n2 candy bags. One bag has one candy, one bag has two candies, one bag has three candies and so on. In fact, for each integer k from 1 to n2 he has exactly one bag with k candies.
Help him give n bags of candies to each brother so that all brothers got the same number of candies.
The single line contains a single integer n (n is even, 2≤n≤100) the number of Gerald's brothers.
Let's assume that Gerald indexes his brothers with numbers from 1 to n. You need to print n lines, on the i-th line print n integers the numbers of candies in the bags for the i-th brother. Naturally, all these numbers should be distinct and be within limits from 1 to n2. You can print the numbers in the lines in any order.
It is guaranteed that the solution exists at the given limits.
2
1 4 2 3
#include"stdio.h"
#include"string.h"
int main()
{
int m,n,i,j,k,h;
while(scanf("%d",&m)!=EOF)
{
k=1;
h=1+m*m;
for(i=1;i<=m;i++)
{
for(j=1;j<=m/2;j++)
{
printf("%d %d ",k,h-k);
k++;
}
printf("\n");
}
}
return 0;
}