http://codeforces.com/contest/845

A. Chess Tourney

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Berland annual chess tournament is coming!

Organizers have gathered 2·n chess players who should be divided into two teams with n people each. The first team is sponsored by BerOil and the second team is sponsored by BerMobile. Obviously, organizers should guarantee the win for the team of BerOil.

Thus, organizers should divide all 2·n players into two teams with n people each in such a way that the first team always wins.

Every chess player has its rating ri. It is known that chess player with the greater rating always wins the player with the lower rating. If their ratings are equal then any of the players can win.

After teams assignment there will come a drawing to form n pairs of opponents: in each pair there is a player from the first team and a player from the second team. Every chess player should be in exactly one pair. Every pair plays once. The drawing is totally random.

Is it possible to divide all 2·n players into two teams with n people each so that the player from the first team in every pair wins regardlessof the results of the drawing?

Input

The first line contains one integer n (1?≤?n?≤?100).

The second line contains 2·n integers a1,?a2,?... a2n (1?≤?ai?≤?1000).

Output

If it‘s possible to divide all 2·n players into two teams with n people each so that the player from the first team in every pair wins regardless of the results of the drawing, then print "YES". Otherwise print "NO".

题意:给2*n个选手拥有不用的实力,实力高的肯定能赢实力低的,相同实力随机赢,问能否把他们分成两组使一组无论怎么匹配打都能赢?

题解:sort()一下,然判断那组是否最小值比另外一组最小值大

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#define ll long long
using namespace std;
const int maxn=2e2+5;
const ll inf=0x4f4f4f4f4f;
int n,k;
int a[maxn];
int main()
{
    scanf("%d",&n);
    for(int i=0;i<2*n;i++)
    {
        scanf("%d",&a[i]);
    }
    sort(a,a+2*n);
    if(a[n]>a[n-1])printf("YES\n");
    else printf("NO\n");
}

B. Luba And The Ticket

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Luba has a ticket consisting of 6 digits. In one move she can choose digit in any position and replace it with arbitrary digit. She wants to know the minimum number of digits she needs to replace in order to make the ticket lucky.

The ticket is considered lucky if the sum of first three digits equals to the sum of last three digits.

Input

You are given a string consisting of 6 characters (all characters are digits from 0 to 9) — this string denotes Luba‘s ticket. The ticket can start with the digit 0.

Output

Print one number — the minimum possible number of digits Luba needs to replace to make the ticket lucky.

Examples

input

000000

output

0

input

123456

output

2

input

111000

output

1

Note

In the first example the ticket is already lucky, so the answer is 0.

In the second example Luba can replace 4 and 5 with zeroes, and the ticket will become lucky. It‘s easy to see that at least two replacements are required.

In the third example Luba can replace any zero with 3. It‘s easy to see that at least one replacement is required.

题意:当前面三个数字之和等于后面三个数字则称这六个数字组成的是幸运数,给六个数字问最改动几个数字使得这六个数成幸运数

题解:把前三个数字和后三个之和求出,相同则为0,不同就判断两个之差能否通过改变一个数字变的(让最小的变大或者最大变小),如果一个不行然后同理判改变两个。

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 #define ll long long
 6 using namespace std;
 7 const int maxn=2e2+5;
 8 const ll inf=0x4f4f4f4f4f;
 9 int n,k;
10 char b[10];
11 int a[10];
12 int main()
13 {
14     scanf("%s",b);
15     int tmp1=0,tmp2=0;
16     for(int i=0;i<6;i++)
17     {
18         a[i]=b[i]-‘0‘;
19         if(i<3)tmp1+=a[i];
20         else tmp2+=a[i];
21     }
22     sort(a+3,a+6);
23     sort(a+0,a+3);
24     //for(int i=0;i<6;i++)cout<<a[i]<<endl;
25     if(tmp1==tmp2)
26     {
27         printf("0\n");
28     }
29     else if(tmp1<tmp2)
30     {
31         if(9-a[0]>=tmp2-tmp1||a[5]>=tmp2-tmp1)
32         {
33             printf("1\n");
34         }
35         else if(9-a[0]+9-a[1]>=tmp2-tmp1||a[5]+a[4]>=tmp2-tmp1||9-a[0]+a[5]>=tmp2-tmp1)
36         {
37             printf("2\n");
38         }
39         else
40         {
41             printf("3\n");
42         }
43
44     }
45     else
46     {
47         if(9-a[3]>=tmp1-tmp2||a[2]>=tmp1-tmp2)
48         {
49             printf("1\n");
50         }
51         else if(9-a[3]+9-a[4]>=tmp1-tmp2||a[2]+a[1]>=tmp1-tmp2||9-a[3]+a[2]>=tmp1-tmp2)
52         {
53             printf("2\n");
54         }
55         else
56         {
57             printf("3\n");
58         }
59     }
60     return 0;
61 }

C. Two TVs

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Polycarp is a great fan of television.

He wrote down all the TV programs he is interested in for today. His list contains n shows, i-th of them starts at moment li and ends at moment ri.

Polycarp owns two TVs. He can watch two different shows simultaneously with two TVs but he can only watch one show at any given moment on a single TV. If one show ends at the same moment some other show starts then you can‘t watch them on a single TV.

Polycarp wants to check out all n shows. Are two TVs enough to do so?

Input

The first line contains one integer n (1?≤?n?≤?2·105) — the number of shows.

Each of the next n lines contains two integers li and ri (0?≤?li?<?ri?≤?109) — starting and ending time of i-th show.

Output

If Polycarp is able to check out all the shows using only two TVs then print "YES" (without quotes). Otherwise, print "NO" (without quotes).

Examples

input

31 22 34 5

output

YES

input

41 22 32 31 2

output

NO

题意;给出喜欢看的节目的开始和结束时间,有两台电视,问能否所有节目是否都能接收到。

题解;把开始时间和结束时间分别sort()一下,只要第i个节目的结束时间比第i+2节目开始时间早,就行。

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 #define ll long long
 6 using namespace std;
 7 const int maxn=2e5+5;
 8 const ll inf=0x4f4f4f4f4f;
 9 int n,k;
10 /*struct node
11 {
12     int l,r;
13     bool operator<(const node b)const
14     {
15         return l==b.l?r<b.r:l<b.l;
16     }
17 }a[maxn];*/
18 int l[maxn],r[maxn];
19 int main()
20 {
21     scanf("%d",&n);
22     for(int i=0;i<n;i++)
23     {
24         scanf("%d %d",&l[i],&r[i]);
25     }
26     sort(l,l+n);
27     sort(r,r+n);
28     for(int i=0;i<n-2;i++)
29     {
30         if(l[i+2]<=r[i])
31         {
32             printf("NO\n");return 0;
33         }
34     }
35     printf("YES\n");
36     return 0;
37 }

D. Driving Test

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Polycarp has just attempted to pass the driving test. He ran over the straight road with the signs of four types.

  • speed limit: this sign comes with a positive integer number — maximal speed of the car after the sign (cancel the action of the previous sign of this type);
  • overtake is allowed: this sign means that after some car meets it, it can overtake any other car;
  • no speed limit: this sign cancels speed limit if any (car can move with arbitrary speed after this sign);
  • no overtake allowed: some car can‘t overtake any other car after this sign.

Polycarp goes past the signs consequentially, each new sign cancels the action of all the previous signs of it‘s kind (speed limit/overtake). It is possible that two or more "no overtake allowed" signs go one after another with zero "overtake is allowed" signs between them. It works with "no speed limit" and "overtake is allowed" signs as well.

In the beginning of the ride overtake is allowed and there is no speed limit.

You are given the sequence of events in chronological order — events which happened to Polycarp during the ride. There are events of following types:

  1. Polycarp changes the speed of his car to specified (this event comes with a positive integer number);
  2. Polycarp‘s car overtakes the other car;
  3. Polycarp‘s car goes past the "speed limit" sign (this sign comes with a positive integer);
  4. Polycarp‘s car goes past the "overtake is allowed" sign;
  5. Polycarp‘s car goes past the "no speed limit";
  6. Polycarp‘s car goes past the "no overtake allowed";

It is guaranteed that the first event in chronological order is the event of type 1 (Polycarp changed the speed of his car to specified).

After the exam Polycarp can justify his rule violations by telling the driving instructor that he just didn‘t notice some of the signs. What is the minimal number of signs Polycarp should say he didn‘t notice, so that he would make no rule violations from his point of view?

Input

The first line contains one integer number n (1?≤?n?≤?2·105) — number of events.

Each of the next n lines starts with integer t (1?≤?t?≤?6) — the type of the event.

An integer s (1?≤?s?≤?300) follows in the query of the first and the third type (if it is the query of first type, then it‘s new speed of Polycarp‘s car, if it is the query of third type, then it‘s new speed limit).

It is guaranteed that the first event in chronological order is the event of type 1 (Polycarp changed the speed of his car to specified).

Output

Print the minimal number of road signs Polycarp should say he didn‘t notice, so that he would make no rule violations from his point of view.

Examples

input

111 1003 70423 12053 12061 15043 300

output

2

input

51 1003 200245

output

0

input

71 20264662

output

2

Note

In the first example Polycarp should say he didn‘t notice the "speed limit" sign with the limit of 70 and the second "speed limit" sign with the limit of 120.

In the second example Polycarp didn‘t make any rule violation.

In the third example Polycarp should say he didn‘t notice both "no overtake allowed" that came after "overtake is allowed" sign.

题意:就是驾驶考试,他会看到四个不同的标志,有不同要求,然后给出他在考试过程中的行为,问他至少要告诉教练有多少个标志没看到,才是算没有犯错(这题重要的是看懂题意)

题解:模拟吧,把限速要求记下就行

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 #include<vector>
 6 #define ll long long
 7 using namespace std;
 8 const int maxn=2e5+5;
 9 const ll inf=0x4f4f4f4f4f;
10 int n,k;
11 vector<int>lim;
12 int l[maxn],r[maxn];
13 int main()
14 {
15     scanf("%d",&n);
16     int ans=0;
17     int s=0,num=0;
18     bool cc=false;
19     while(n--)
20     {
21         int op,t;
22         scanf("%d",&op);
23         if(op==1)
24         {
25             scanf("%d",&s);
26             while(lim.size()&&s>lim.back())
27             {
28                 lim.pop_back();ans++;
29             }
30         }
31         else if(op==3)
32         {
33             int l;
34             scanf("%d",&l);
35             lim.push_back(l);
36             while(lim.size()&&s>lim.back())
37             {
38                 lim.pop_back();ans++;
39             }
40         }
41         else if(op==2)
42         {
43             if(!cc)
44             {
45                 ans+=num;num=0;
46             }
47         }
48         else if(op==4)
49         {
50             cc=true;num=0;
51         }
52         else if(op==5)
53         {
54             lim.clear();
55         }
56         else
57         {
58             cc=false;num++;
59         }
60     }
61     printf("%d\n",ans);
62     return 0;
63 }

时间: 2024-08-26 19:23:24

http://codeforces.com/contest/845的相关文章

http://codeforces.com/contest/575/problem/B

题目链接: http://codeforces.com/contest/575/problem/B 题解: 代码: #include<cstdio> #include<vector> #include<cstring> #include<iostream> #include<algorithm> using namespace std; const int maxn = 1e5 + 10; const int DEG = 22; const in

http://codeforces.com/contest/741/problem/B B. Arpa&#39;s weak amphitheater and Mehrdad&#39;s valuable Hoses

题意: 给出上限体重W 然后还给出每个人的体重wi 和 魅力值 bi 互为伙伴的对(xi, yi) 可以凑成group 思路: 并查集找出所有的group 暴力背包 对于每一个group 要选出这一组内选一个人时的最优结果, 如果所有人的体重和小于等于W,还得考虑选所有人的情况 #include <iostream> #include <string.h> #include <algorithm> #include <stdio.h> #include &l

http://codeforces.com/contest/349

A. Cinema Line time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output The new "Die Hard" movie has just been released! There are n people at the cinema box office standing in a huge line. Ea

http://codeforces.com/contest/776/problem/G

题意: 讲一个16进制的数字num的每一位拆分下来 也就是sum = $\sigma(2 ^ a_i)$ 每一个a_i 都是不同的 举个栗子: $1014_16$ 就是 $2^1 + 2 ^ 0 + 2 ^ 4$ 求得的sum是个十进制的数字 然后将sum和num都化为二进制进行异或,如果异或后的值小于num那么++ans 现在题目是给出一个区间[l, r] 问这个区间内有多少个满足条件的数,也就是区间内ans的大小 思路: 贪心+数位dp, 定义三个状态 dp[mask1][mask2][le

http://codeforces.com/contest/535/problem/C

C. Tavas and Karafs time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Karafs is some kind of vegetable in shape of an 1?×?h rectangle. Tavaspolis people love Karafs and they use Karafs in al

http://codeforces.com/contest/834

A. The Useless Toy time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Walking through the streets of Marshmallow City, Slastyona have spotted some merchants selling a kind of useless toy which

http://www.codeforces.com/contest/703/problem/D D. Mishka and Interesting sum (莫队的TLE)

/*莫队算法的常数优化 实战演练 虽然是TLE代码*/ #include<bits/stdc++.h> using namespace std; const int maxn = 1000000 + 100; int block; struct query{ int l, r, id; bool operator < (const query &rhs)const{ return (l/block == rhs.l /block) ? r < rhs.r : l/block

Codeforces 845 C. Two TVs 简单贪心算法

题目: 题目原文链接:http://codeforces.com/contest/845/problem/C 题意:现在我们有一个电视清单,有两个电视,电视清单上有每一个节目的开始时间和结束时间. 电视不能接连不间断的播放,例如TV1播放完1-2点的节目后不能接着播放2-3点的电视,除非在TV2上播放,如果TV2也正在播放则不能播放完清单. 思路: 1.对清单排序,让开始时间早的靠前,如果开始时间相同,结束时间早的靠前. 2.如果TV1已经结束.就把这一个节目的结束时间赋给TV1,然后看下一个节

CodeForces B. Creating the Contest

http://codeforces.com/contest/1029/problem/B You are given a problemset consisting of nn problems. The difficulty of the ii-th problem is aiai. It is guaranteed that all difficulties are distinct and are given in the increasing order. You have to ass