URAL 1779. The Great Team



1779. The Great Team

Time limit: 0.5 second
Memory limit: 64 MB
When a few students of the Ural State University finished their sport career, the university encountered a lot of problems in team composition. Veterans of sports programming decided to play their role and create the most successful team in the history of the Ural SU.
Veterans assumed that success of a team strongly depends on the number of friends in the ACM community the members of this team have. After more discussions they developed the  criterion of success: all three members of the team should have the same number of friends.
Unfortunately, the veterans failed to compose a team, as it turned out that there were no three programmers in the Ural SU that together satisfied this criterion.
You should use this information to determine which students are friends of each other.

Input

The first line contains a single integer  n  (3 ≤  n ≤ 200) , which is the number of students in the Ural SU participating in programming contests.

Output

If the veterans' calculations are correct, the first line should contain an integer  k, which is the number of pairs of students that are friends of each other. The following  k lines should contain these pairs. Students should be numbered 1 through  n. If a problem has multiple correct answers, output any of them.
If the veterans are wrong and the problem has no solution, output a single line containing a number −1.
#include<iostream>
#include<stdio.h>
using namespace std; 
int main ()
{
int i,temp,n,flag,j,k;
while(scanf("%d",&n)!=EOF)
{
temp=n;
if(temp%2)
{
printf("%d\n",(temp-1)*(temp-1)/4);
k=n;
for(i=temp-2,j=k;i>0;i=i-2)
{
flag=i;
while(flag--)
{
j--;
printf("%d %d\n",j,k);
}
k--;
j=k;

}
}
else
{
printf("%d\n",temp*(temp-2)/4);
k=n;
for(i=temp-2,j=k;i>0;i=i-2)
{
flag=i;
while(flag--)
{
j--;
printf("%d %d\n",j,k);
}
k--;
j=k;

}

}

}


return 0;
}



1779. The Great Team

Time limit: 0.5 second
Memory limit: 64 MB
When a few students of the Ural State University finished their sport career, the university encountered a lot of problems in team composition. Veterans of sports programming decided to play their role and create the most successful team in the history of the Ural SU.
Veterans assumed that success of a team strongly depends on the number of friends in the ACM community the members of this team have. After more discussions they developed the  criterion of success: all three members of the team should have the same number of friends.
Unfortunately, the veterans failed to compose a team, as it turned out that there were no three programmers in the Ural SU that together satisfied this criterion.
You should use this information to determine which students are friends of each other.

Input

The first line contains a single integer  n  (3 ≤  n ≤ 200) , which is the number of students in the Ural SU participating in programming contests.

Output

If the veterans' calculations are correct, the first line should contain an integer  k, which is the number of pairs of students that are friends of each other. The following  k lines should contain these pairs. Students should be numbered 1 through  n. If a problem has multiple correct answers, output any of them.
If the veterans are wrong and the problem has no solution, output a single line containing a number −1.
#include<iostream>
#include<stdio.h>
using namespace std; 
int main ()
{
int i,temp,n,flag,j,k;
while(scanf("%d",&n)!=EOF)
{
temp=n;
if(temp%2)
{
printf("%d\n",(temp-1)*(temp-1)/4);
k=n;
for(i=temp-2,j=k;i>0;i=i-2)
{
flag=i;
while(flag--)
{
j--;
printf("%d %d\n",j,k);
}
k--;
j=k;

}
}
else
{
printf("%d\n",temp*(temp-2)/4);
k=n;
for(i=temp-2,j=k;i>0;i=i-2)
{
flag=i;
while(flag--)
{
j--;
printf("%d %d\n",j,k);
}
k--;
j=k;

}

}

}


return 0;
}
用代码解决这个问题The program committee of the school programming contests, which are often held at the Ural State University, is a big, joyful, and united team. In fact, they are so united that the time spent together at the university is not enough for them, so they often visit each other at their homes. In addition, they are quite athletic and like walking. Once the guardian of the traditions of the sports programming at the Ural State University decided that the members of the program committee spent too much time walking from home to home. They could have spent that time inventing and preparing new problems instead. To prove that, he wanted to calculate the average distance that the members of the program committee walked when they visited each other. The guardian took a map of Yekaterinburg, marked the houses of all the members of the program committee there, and wrote down their coordinates. However, there were so many coordinates that he wasn't able to solve that problem and asked for your help. The city of Yekaterinburg is a rectangle with the sides parallel to the coordinate axes. All the streets stretch from east to west or from north to south through the whole city, from one end to the other. The house of each member of the program committee is located strictly at the intersection of two orthogonal streets. It is known that all the members of the program committee walk only along the streets, because it is more pleasant to walk on sidewalks than on small courtyard paths. Of course, when walking from one house to another, they always choose the shortest way. All the members of the program committee visit each other equally often. Input The first line contains the number n of members of the program committee (2 ≤ n ≤ 105). The i-th of the following n lines contains space-separated coordinates xi, yi of the house of the i-th member of the program committee (1 ≤ xi, yi ≤ 106). All coordinates are integers. Output Output the average distance, rounded down to an integer, that a member of the program committee walks from his house to the house of his colleague.
05-26
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值