There are n cards (n is even) in the deck. Each card has a positive integer written on it. n / 2 people will play new card game. At the beginning of the game each player gets two cards, each card is given to exactly one player.
Find the way to distribute cards such that the sum of values written of the cards will be equal for each player. It is guaranteed that it is always possible.
The first line of the input contains integer n (2 ≤ n ≤ 100) — the number of cards in the deck. It is guaranteed that n is even.
The second line contains the sequence of n positive integers a1, a2, ..., an (1 ≤ ai ≤ 100), where ai is equal to the number written on the i-th card.
Print n / 2 pairs of integers, the i-th pair denote the cards that should be given to the i-th player. Each card should be given to exactly one player. Cards are numbered in the order they appear in the input.
It is guaranteed that solution exists. If there are several correct answers, you are allowed to print any of them.
6
1 5 7 4 4 3
1 3
6 2
4 5
4
10 10 10 10
1 2
3 4
In the first sample, cards are distributed in such a way that each player has the sum of numbers written on his cards equal to 8.
In the second sample, all values ai are equal. Thus, any distribution is acceptable.
题意:将n个数分为两个一组,一共n/2组,每组的和都相同,因为数据范围小,可以直接暴力
AC代码:
<span style="font-size:14px;"><span style="font-size:14px;">#include<stdio.h>
#include<string.h>
int main()
{
int n,a[110],visit[110],sum=0,i,j;
memset(visit,0,sizeof(visit));
scanf("%d",&n);
for(i=1;i<=n;i++)
{
scanf("%d",&a[i]);
sum+=a[i];
}
sum=sum/(n/2);
for(i=1;i<=n;i++)
{
if(visit[i]==0)
{
visit[i]=1;
for(j=i+1;j<=n;j++)
if(visit[j]==0&&a[i]+a[j]==sum)
{
printf("%d %d\n",i,j);
visit[j]=1;
break;
}
}
}
}
</span></span>
Vasya has the square chessboard of size n × n and m rooks. Initially the chessboard is empty. Vasya will consequently put the rooks on the board one after another.
The cell of the field is under rook's attack, if there is at least one rook located in the same row or in the same column with this cell. If there is a rook located in the cell, this cell is also under attack.
You are given the positions of the board where Vasya will put rooks. For each rook you have to determine the number of cells which are not under attack after Vasya puts it on the board.
The first line of the input contains two integers n and m (1 ≤ n ≤ 100 000, 1 ≤ m ≤ min(100 000, n2)) — the size of the board and the number of rooks.
Each of the next m lines contains integers xi and yi (1 ≤ xi, yi ≤ n) — the number of the row and the number of the column where Vasya will put the i-th rook. Vasya puts rooks on the board in the order they appear in the input. It is guaranteed that any cell will contain no more than one rook.
Print m integer, the i-th of them should be equal to the number of cells that are not under attack after first i rooks are put.
3 3
1 1
3 1
2 2
4 2 0
5 2
1 5
5 1
16 9
100000 1
300 400
9999800001
On the picture below show the state of the board after put each of the three rooks. The cells which painted with grey color is not under the attack.

<span style="font-size:14px;">#include<stdio.h>
#include<string.h>
int visit1[100001],visit2[100001];//分别标记行和列的访问情况
int main()
{
long long n,m,i,j,x,y,ans,a,b;
scanf("%lld%lld",&n,&m);
memset(visit1,0,sizeof(visit1));
memset(visit2,0,sizeof(visit2));
ans=n*n;
a=0,b=0;
//a代表列已经被占领的方格数,b代表行已经被占领的方格数。若某一行被占领,显然所有列上的方格数被占领数都会加1,即a++;b同理
while(m--)
{
scanf("%lld%lld",&x,&y);//如果x行没有被占领
if(!visit1[x])//
{
ans-=(n-b);//行上新被占领的数是n-b
a++;//列上被占领数加1
visit1[x]=1;//标记x行被占领
}
if(!visit2[y])//与行同理
{
ans-=(n-a);
b++;
visit2[y]=1;
}
printf("%lld ",ans);
}
}</span>
Sergei B., the young coach of Pokemons, has found the big house which consists of n flats ordered in a row from left to right. It is possible to enter each flat from the street. It is possible to go out from each flat. Also, each flat is connected with the flat to the left and the flat to the right. Flat number 1 is only connected with the flat number 2 and the flat number n is only connected with the flat number n - 1.
There is exactly one Pokemon of some type in each of these flats. Sergei B. asked residents of the house to let him enter their flats in order to catch Pokemons. After consulting the residents of the house decided to let Sergei B. enter one flat from the street, visit several flats and then go out from some flat. But they won't let him visit the same flat more than once.
Sergei B. was very pleased, and now he wants to visit as few flats as possible in order to collect Pokemons of all types that appear in this house. Your task is to help him and determine this minimum number of flats he has to visit.
The first line contains the integer n (1 ≤ n ≤ 100 000) — the number of flats in the house.
The second line contains the row s with the length n, it consists of uppercase and lowercase letters of English alphabet, the i-th letter equals the type of Pokemon, which is in the flat number i.
Print the minimum number of flats which Sergei B. should visit in order to catch Pokemons of all types which there are in the house.
3
AaA
2
7
bcAAcbc
3
6
aaBCCe
5
In the first test Sergei B. can begin, for example, from the flat number 1 and end in the flat number 2.
In the second test Sergei B. can begin, for example, from the flat number 4 and end in the flat number 6.
In the third test Sergei B. must begin from the flat number 2 and end in the flat number 6.
1.初始化左右端点
2.不断扩大右端点,直到满足条件
3.如果第二步中无法满足条件,则终止,否则更新结果
4.将左端点扩大1,然后回到第二步
AC代码:
#include<stdio.h>
#include<string.h>
int main()
{
int n,temp=0,i,ans;char s[100010];int a[200];
memset(a,0,sizeof(a));
scanf("%d",&n);
scanf("%s",s);
for(i=0;i<n;i++)
{
a[s[i]]=1;
}
for(i=65;i<=122;i++)
if(a[i]) temp++;//先找出原来字符串一共包含多少个不同的字母
memset(a,0,sizeof(a));
int l=0,r=0,now=1;ans=n+1;
a[s[l]]=1;
while(1)//尺取法
{
while(r<n-1)
{
if(now==temp) break;
r++;
if(!a[s[r]]) {now++;}
a[s[r]]++;
}
if(now<temp) break;
if(r-l+1<ans) ans=r-l+1;
if((--a[s[l]])==0) now--;
l++;
}
printf("%d\n",ans);
}
On vacations n pupils decided to go on excursion and gather all together. They need to overcome the path with the length l meters. Each of the pupils will go with the speed equal to v1. To get to the excursion quickly, it was decided to rent a bus, which has seats fork people (it means that it can't fit more than k people at the same time) and the speed equal to v2. In order to avoid seasick, each of the pupils want to get into the bus no more than once.
Determine the minimum time required for all n pupils to reach the place of excursion. Consider that the embarkation and disembarkation of passengers, as well as the reversal of the bus, take place immediately and this time can be neglected.
The first line of the input contains five positive integers n, l, v1, v2 and k (1 ≤ n ≤ 10 000, 1 ≤ l ≤ 109, 1 ≤ v1 < v2 ≤ 109,1 ≤ k ≤ n) — the number of pupils, the distance from meeting to the place of excursion, the speed of each pupil, the speed of bus and the number of seats in the bus.
Print the real number — the minimum time in which all pupils can reach the place of excursion. Your answer will be considered correct if its absolute or relative error won't exceed 10 - 6.
5 10 1 2 5
5.0000000000
3 6 1 2 1
4.7142857143
In the first sample we should immediately put all five pupils to the bus. The speed of the bus equals 2 and the distance is equal to 10, so the pupils will reach the place of excursion in time 10 / 2 = 5.
题意:一段长为l的路,n个人要过去,人步行的速度是v1,车一次可以接k个人,车的速度是v2,求所有人通过的最短时间。
思路:这是一道数学题,试想一下,所有人最后无论是坐车还是步行,都是同时到达,那么时间一定是最短的,也就是最后一波坐车的到达时,其余正在步行的也刚好到达,所有人花费的时间都相同,省去了等待时间,那么每个人步行和坐车的时间也一定相同。设步行时间是t1,坐车时间是t2;
AC代码:
#include<stdio.h>
int main()
{
int n,k,num;double v1,v2,l,t2,t;
scanf("%d%lf%lf%lf%d",&n,&l,&v1,&v2,&k);
num=n/k+(n%k==0?0:1);
t2=l/(v2+(num-1)*v1*(1+(v2-v1)/(v2+v1)));
t=(l-t2*v2)/v1+t2;
printf("%lf\n",t);
}