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. 利用VS正则替换删除文本行首数据等字符

    删除以数字开头的加‘.’的行首序号 ^[0-9][0-9][.]

  2. dedecms提取某栏目及子栏目名称到首页怎么弄

    我们建网站时有不同的需求,例如为页面创建一个栏目导航,用dedecms如何提取某栏目及子栏目名称和链接呢?如下图所示,先列出指定的顶级栏目,在下方再列出此栏目的所有子栏目. 之前ytkah说过dede ...

  3. druid.io本地集群搭建 / 扩展集群搭建

    druid.io 是一个比较重型的数据库查询系统,分为5种节点 . 在此就不对数据库进行介绍了,如果有疑问请参考白皮书: http://pan.baidu.com/s/1eSFlIJS 单台机器的集群 ...

  4. zabbix 微信报警脚本

    不知道是什么原因直接用Python脚本zabbix无法执行脚本,需要一个shell来启动 #! /bin/bash userid=$ content=$ python /data/zabbix/ale ...

  5. 如何用softmax和sigmoid来做多分类和多标签分类

    首先,说下多类分类和多标签分类的区别 多标签分类:一个样本可以属于多个类别(或标签),不同类之间是有关联的,比如一个文本被被划分成“人物”和“体育人物”两个标签.很显然这两个标签不是互斥的,而是有关联 ...

  6. 【设置】Nginx配置文件具体配置解释

    #定义Nginx运行的用户和用户组 user www www; #nginx进程数,建议设置为等于CPU总核心数. worker_processes 8; #全局错误日志定义类型,[ debug | ...

  7. Object之clone

    一.Object类中clone的实现. 二.clone详解. 看,clone()方法又是一个被声明为native的方法,因此,我们知道了clone()方法并不是Java的原生方法,具体的实现是有C/C ...

  8. Learning to Rank算法介绍:RankSVM 和 IR SVM

    之前的博客:http://www.cnblogs.com/bentuwuying/p/6681943.html中简单介绍了Learning to Rank的基本原理,也讲到了Learning to R ...

  9. python isinstance用法

    isinstance(object,type) 其第一个参数(object)为对象,第二个参数(type)为类型名(int...)或类型名的一个列表((int,list,float)是一个列表). 其 ...

  10. 【转】Java中Synchronized的用法

    <编程思想之多线程与多进程(1)——以操作系统的角度述说线程与进程>一文详细讲述了线程.进程的关系及在操作系统中的表现,这是多线程学习必须了解的基础.本文将接着讲一下Java线程同步中的一 ...