现在的位置: 首页 > 综合 > 正文

codeforces round 274 div2

2018年02月21日 ⁄ 综合 ⁄ 共 6448字 ⁄ 字号 评论关闭
A. Expression
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Petya studies in a school and he adores Maths. His class has been studying arithmetic expressions. On the last class the teacher wrote three positive integers
a, b,
c on the blackboard. The task was to insert signs of operations '+' and '*', and probably brackets between the numbers so that the value of
the resulting expression is as large as possible. Let's consider an example: assume that the teacher wrote numbers 1, 2 and 3 on the blackboard. Here are some ways of placing signs and brackets:

  • 1+2*3=7
  • 1*(2+3)=5
  • 1*2*3=6
  • (1+2)*3=9

Note that you can insert operation signs only between a and
b, and between b and
c, that is, you cannot swap integers. For instance, in the given sample you cannot get expression (1+3)*2.

It's easy to see that the maximum value that you can obtain is 9.

Your task is: given a,
b
and c print the maximum value that you can get.

Input

The input contains three integers a,
b
and c, each on a single line (1 ≤ a, b, c ≤ 10).

Output

Print the maximum value of the expression that you can obtain.

水题

#include<cmath>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>

using namespace std;

int max(int a, int b)
{
	return a > b ? a : b;
} 

int main()
{
    int a, b, c;
    while (~scanf("%d%d%d", &a, &b, &c))
    {
        int x = a * b * c;
        x = max(x, a + b * c);
        x = max(x, a * (b + c));
        x = max(x, (a + b) * c);
        x = max(x, a + b + c);
        printf("%d\n", x);
    }
    return 0;
}

B. Towers
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

As you know, all the kids in Berland love playing with cubes. Little Petya has
n towers consisting of cubes of the same size. Tower with number
i consists of ai cubes stacked one on top of the other. Petya defines the
instability of a set of towers as a value equal to the difference between the heights of the highest and the lowest of the towers. For example, if Petya built five cube towers with heights (8, 3, 2, 6, 3), the instability
of this set is equal to 6 (the highest tower has height 8, the lowest one has height 2).

The boy wants the instability of his set of towers to be as low as possible. All he can do is to perform the following operation several times: take the top cube from some tower and put it on top of some other tower of his set. Please note that Petya would
never put the cube on the same tower from which it was removed because he thinks it's a waste of time.

Before going to school, the boy will have time to perform no more than
k
such operations. Petya does not want to be late for class, so you have to help him accomplish this task.

Input

The first line contains two space-separated positive integers
n
and k (1 ≤ n ≤ 100,
1 ≤ k ≤ 1000) — the number of towers in the given set and the maximum number of operations Petya can perform. The second line contains
n space-separated positive integers
ai
(1 ≤ ai ≤ 104) — the towers' initial heights.

Output

In the first line print two space-separated non-negative integers
s
and m (m ≤ k). The first number is the value of the minimum possible instability that can be obtained after performing at most
k operations, the second number is the number of operations needed for that.

In the next m lines print the description of each operation as two positive integers
i and j, each of them lies within limits from
1 to n. They represent that Petya took the top cube from the
i-th tower and put in on the
j
-th one (i ≠ j). Note that in the process of performing operations the heights of some towers can become equal to zero.

If there are multiple correct sequences at which the minimum possible instability is achieved, you are allowed to print any of them.

Sample test(s)
Input
3 2
5 8 5
Output
0 2
2 1
2 3
Input
3 4
2 2 4
Output
1 1
3 2
Input
5 3
8 3 2 6 3
Output
3 3
1 3
1 2
1 3
Note

In the first sample you need to move the cubes two times, from the second tower to the third one and from the second one to the first one. Then the heights of the towers are all the same and equal to 6.

优先队列或者n次快排都行,反正数据那么小

#include<cmath>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>

using namespace std;


struct node2
{
	int h;
	int d;
}he[105];

struct node
{
	int x, y;
}buzu[1010];

int cmp(node2 a, node2 b)
{
	return a.h < b.h;
	
}
int main()
{
	int n, k;
    while (~scanf("%d%d", &n, &k))
    {
    	for(int i = 0; i < n; i++)
    	{
	    	scanf("%d", &he[i].h);
	    	he[i].d = i + 1;
	    }
	    sort(he, he + n, cmp);
	    int i = 0;
	    int cnt = 0;
	    while(i < k)
	    {
    		if(he[n - 1].h == he[0].h)
    		{
		    	break;
		    }
		    he[0].h++;
		    he[n - 1].h--;
		    i++;
		    buzu[cnt].x = he[n - 1].d;
		    buzu[cnt++].y = he[0].d;
	     	sort(he, he + n, cmp);
    	}
    	int ans = he[n - 1].h - he[0].h;
    	printf("%d %d\n", ans, i);
    	for(int i = 0; i < cnt; i++)
    	{
	    	printf("%d %d\n", buzu[i].x, buzu[i].y);
	    }

    }
    return 0;
}

C. Exams
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Student Valera is an undergraduate student at the University. His end of term exams are approaching and he is to pass exactly
n exams. Valera is a smart guy, so he will be able to pass any exam he takes on his first try. Besides, he can take several exams on one day, and in any order.

According to the schedule, a student can take the exam for the
i
-th subject on the day number ai. However, Valera has made an arrangement with each teacher and the teacher of the
i-th subject allowed him to take an exam before the schedule time on day
bi (bi < ai). Thus, Valera can take an exam for the
i-th subject either on day
ai
, or on day
bi
. All the teachers put the record of the exam in the student's record book on the day of the actual exam and write down the date of the mark as number
ai.

Valera believes that it would be rather strange if the entries in the record book did not go in the order of non-decreasing date. Therefore Valera asks you to help him. Find the minimum possible value of the day when Valera can take the final exam if he
takes exams so that all the records in his record book go in the order of non-decreasing date.

Input

The first line contains a single positive integer n (1 ≤ n ≤ 5000) — the number of exams Valera will take.

Each of the next n lines contains two positive space-separated integers
ai and
bi (1 ≤ bi < ai ≤ 109)
— the date of the exam in the schedule and the early date of passing the
i
-th exam, correspondingly.

Output

Print a single integer — the minimum possible number of the day when Valera can take the last exam if he takes all the exams so that all the records in his record book go in the order of non-decreasing date.

Sample test(s)
Input
3
5 2
3 1
4 2
Output
2
Input
3
6 1
5 2
4 3
Output
6
Note

In the first sample Valera first takes an exam in the second subject on the first day (the teacher writes down the schedule date that is 3). On the next day he takes an exam in the third subject (the teacher writes down the schedule date, 4), then he takes
an exam in the first subject (the teacher writes down the mark with date 5). Thus, Valera takes the last exam on the second day and the dates will go in the non-decreasing order: 3, 4, 5.

In the second sample Valera first takes an exam in the third subject on the fourth day. Then he takes an exam in the second subject on the fifth day. After that on the sixth day Valera takes an exam in the first subject.

先按a从小到大排序,a相同时按b从小到大排序,比较时如果可以就选b,否则选a

#include <map>  
#include <set>  
#include <list>  
#include <stack>  
#include <vector>  
#include <queue>  
#include <cmath>  
#include <cstdio>  
#include <cstring>  
#include <iostream>  
#include <algorithm>  
  
using namespace std; 

pair<int, int>a[5050];

int main()
{
    int n;
    while (~scanf("%d", &n))
    {
        for (int i = 0; i < n; ++i)
        {
            scanf("%d%d", &a[i].first, &a[i].second);
        }
        sort(a, a + n);
        int day = a[0].second;
        for (int i = 1; i < n; ++i)
        {
            if(day <= a[i].second)
            {
                day = a[i].second;
            }
            else
            {
                day = a[i].first;
            }
        }
        printf("%d\n", day);
    }

    return 0;
}

抱歉!评论已关闭.