A. Chess Tourney
 

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个数  让你选择n个数  然后 必须使得 选的n个数  比没选的n个数里面的数都要大

就很基本 sort一下  比较一下1-n 中最大的  和 n+1 到2*n中最小的 是否相等

#include<bits/stdc++.h>
using namespace std;
typedef long long ll; int s[];
int main ()
{
int n;
cin>>n;
for(int i=;i<=*n;i++)
cin>>s[i];
sort(s+,s+*n+);
if(s[n]==s[n+])
puts("NO");
else
puts("YES");
}
B. Luba And The Ticket
 

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.

 
题意 给你6个数字 问你使得 前三个和 和后面三个和 相等的 数字改动的最少数量
 
大概我是分情况讨论的   下面就是我AC的代码  把 0 ,1 ,2 的情况都讨论了   结果 当然是GG的了,并且写的时候脑子时刻会短路 不知道会x - 0 还是9 - x
大概是我数学逻辑不好的吧
 
#include<bits/stdc++.h>
using namespace std; char a[],b[]; int main ()
{
for(int i=;i<;i++)
cin>>a[i];
for(int i=;i<;i++)
cin>>b[i];
sort(a,a+);sort(b,b+); int s1=,s2=;
for(int i=;i<;i++)
s1+=a[i],s2+=b[i];
if(s1 == s2)//0的情况
{
puts("");
return ;
}
if(s1 > s2)//1的情况
{
int mx = max(''-b[],a[]-'');
//cout << '9'-b[0]<<endl;
//cout<<a[0]-'0'<<endl;
if(s1 - s2 <= mx)
{
puts("");
return ;
}
}
if(s2 > s1)
{
int mx = max(''-a[],b[]-'');
if(s2 - s1 <= mx)
{
puts("");
return ;
}
}
if(s1 < s2)
{
int mx = max(''-a[] + b[]-'',max(''-a[]+''-a[],b[]-''+b[]-'')); if(s2-s1 <= mx)
{
puts("");
return ;
}
}
if(s2 < s1)
{
int mx = max(''-b[] + a[]-'',max(''-b[]+''-b[],a[]+a[]-''-''));
if(s1-s2 <= mx)
{
puts("");
return ;
}
}
puts("");
}
下面是看到别人的blog后 写出来的  感觉自己是真的菜
//都是知识盲区 抓紧补
#include<bits/stdc++.h>
using namespace std;
char s[];
int num[]; bool cmp(int a,int b)
{
return a>b;
}
int main ()
{
int s1 =,s2 = ;
cin>>s;
for(int i=;i<;i++)
s1+= s[i] -'';
for(int i=;i<;i++)
s2+= s[i] -'';
if(s1 == s2)
{
puts("");
return ;
}
if(s1 > s2) //前面数字大 大的要尽量变0 小的尽量变9
{
for(int i=;i<;i++)
num[i] = s[i]-'' - ;
for(int i=;i<;i++)
num[i] = - (s[i]-'');
sort(num,num+,cmp);
for(int i=;i<;i++)
num[i] += num[i-];
for(int i=;i<;i++)
{
if(num[i] >= s1-s2)
{
cout << i+<<endl;
return ;
}
}
}
if(s2 > s1)
{
for(int i=;i<;i++)
num[i] = -(s[i]-'');
for(int i=;i<;i++)
num[i] = (s[i]-'')-;
sort(num,num+,cmp);
for(int i=;i<;i++)
num[i] += num[i-]; for(int i=;i<;i++)
{
if(num[i] >= s2-s1)
{
cout << i+<<endl;
return ;
}
}
}
}
 
C. Two TVs
 

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).

题意:题目大概能看懂的吧    一个小trick 就是 一个结束和一个开始的时间重合的话,是不可以使用相同的电视的

//感觉像是模拟
#include<bits/stdc++.h>
using namespace std;
const int maxn = 2e5+;
int n;
struct node
{
int l,r;
bool operator<(const node& a)const
{
return l < a.l;
}
}s[maxn];
priority_queue<int,vector<int>,greater<int> >s1,s2; int main ()
{
cin>>n;
for(int i=;i<=n;i++)
cin>>s[i].l >> s[i].r;
sort(s+,s+n+); for(int i=;i<=n;i++)
{
if(s1.empty())
{
s1.push(s[i].r);
continue;
}
if(s2.empty())
{
s2.push(s[i].r);
continue;
}
int now1 = s1.top();
if(now1 < s[i].l)
{
s1.pop();
s1.push(s[i].r);
continue;
}
int now2 = s2.top();
if(now2 < s[i].l)
{
s2.pop();
s2.push(s[i].r);
continue;
}
puts("NO");return ;
}
puts("YES");
}

Educational Codeforces Round 27 A B C的更多相关文章

  1. Educational Codeforces Round 27 补题

    题目链接:http://codeforces.com/contest/845 A. Chess Tourney 水题,排序之后判断第n个元素和n+1个元素是不是想等就可以了. #include < ...

  2. Educational Codeforces Round 27

    期末后恢复性训练,结果完美爆炸... A,题意:2n个人,分成两队,要求无论怎么分配,第一队打赢第二队 #include<bits/stdc++.h> #define fi first # ...

  3. Educational Codeforces Round 27 F. Guards In The Storehouse

    F. Guards In The Storehouse time limit per test 1.5 seconds memory limit per test 512 megabytes inpu ...

  4. Educational Codeforces Round 27 D. Driving Test

    单调栈 题意看了半天... #include <cstdio> #include <cstdlib> #include <cmath> #include <c ...

  5. Educational Codeforces Round 117 (Rated for Div. 2)

    Educational Codeforces Round 117 (Rated for Div. 2) A. Distance https://codeforces.com/contest/1612/ ...

  6. [Educational Codeforces Round 16]E. Generate a String

    [Educational Codeforces Round 16]E. Generate a String 试题描述 zscoder wants to generate an input file f ...

  7. [Educational Codeforces Round 16]D. Two Arithmetic Progressions

    [Educational Codeforces Round 16]D. Two Arithmetic Progressions 试题描述 You are given two arithmetic pr ...

  8. [Educational Codeforces Round 16]C. Magic Odd Square

    [Educational Codeforces Round 16]C. Magic Odd Square 试题描述 Find an n × n matrix with different number ...

  9. [Educational Codeforces Round 16]B. Optimal Point on a Line

    [Educational Codeforces Round 16]B. Optimal Point on a Line 试题描述 You are given n points on a line wi ...

随机推荐

  1. 常用的windows注册表大全

    目录 使系统没有“运行”选项                        1让操作系统无“关闭系统” 选项                    2让操作系统无“注销”选项              ...

  2. python中url解析 or url的base64编码

    目录 from urllib.parse import urlparse, quote, unquote, urlencode1.解析url的组成成分:urlparse(url)2.url的base6 ...

  3. A solution for MySQL Assertion failure FIL_NULL

    A solution for MySQL Assertion failure FIL_NULL http://michaelfranzl.com/2014/01/25/solution-mysql-a ...

  4. Java-小技巧-002-String 转 long

    1.转化 long l = Long.parseLong([String]); 相当于 long l = Long.parseLong([String],10); long l = Long.valu ...

  5. c#图像灰度化、灰度反转、二值化

    图像灰度化:将彩色图像转化成为灰度图像的过程成为图像的灰度化处理.彩色图像中的每个像素的颜色有R.G.B三个分量决定,而每个分量有255中值可取,这样一个像素点可以有1600多万(255*255*25 ...

  6. sklearn_Logistic Regression

    一.什么是逻辑回归? 一种名为“回归”的线性分类器,其本质是由线性回归变化而来的,一种广泛使用于分类问题中的广义回归算法 面试高危问题:Sigmoid函数的公式和性质 Sigmoid函数是一个S型的函 ...

  7. 使用TreeView加载XML文件

    PS: 由于小弟初学编程,本文只写实现方式,代码写的不是很好请见谅! 1.需要读取的xml文档内容 2. 最终实现效果 3  貌似看起实现起来很复杂 但是想想还是挺简单 思路:  读取XML文档 →获 ...

  8. zw版【转发·台湾nvp系列Delphi例程】HALCON SmallestRectangle1

    zw版[转发·台湾nvp系列Delphi例程]HALCON SmallestRectangle1 procedure TForm1.Button1Click(Sender: TObject);var ...

  9. Intro to Python for Data Science Learning 7 - 2D NumPy Arrays

    2D NumPy Arrays from:https://campus.datacamp.com/courses/intro-to-python-for-data-science/chapter-4- ...

  10. NOSQL学习之二:MongoDB

    MongoDB是一个高性能,开源,无模式的文档型数据库,它在许多场景下可用于替代传统的关系型数据库或键/值存储方式,是当前NoSQL数据库中比较热门的一种. MongoDB使用C++开发.不支持SQL ...