题目链接:http://codeforces.com/contest/734

A:SB题。

#include<cstdio>
#include<cstring>
#include<algorithm>
#define maxn 100005
using namespace std;
int n,num1,num2;
char s[maxn];
int main(){
scanf("%d",&n);scanf("%s",s+1);
for(int i=1;i<=n;i++)if(s[i]=='A')num1++;else num2++;
if(num1>num2)puts("Anton");
else if(num1<num2)puts("Danik");
else puts("Friendship");
return 0;
}

B:SB题。

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int k2,k3,k5,k6,sum;
int main(){
scanf("%d%d%d%d",&k2,&k3,&k5,&k6);
sum=256*min(min(k5,k6),k2);
k2-=min(min(k5,k6),k2);
sum+=32*min(k3,k2);
printf("%d\n",sum);
return 0;
}

C:由于题目中第二种魔法是递增的,所以只要枚举第一种魔法用哪一个,二分第二种就好了。。

但我SB的没有看到递增。。所以我把两个都排序后两个指针扫一遍。

#include<cstdio>
#include<cstring>
#include<algorithm>
#define maxn 200005
using namespace std;
int n,m,k,x,s,mx[maxn];
long long ans;
struct fuck{int x,y;}p1[maxn];
struct pps{int x,y;}p2[maxn];
bool comp(fuck x,fuck y){return x.y<y.y;}
bool cmp(pps x,pps y){return x.y<y.y;}
int read(){
int x=0,f=1;char ch;
for(ch=getchar();ch<'0'||ch>'9';ch=getchar())if(ch=='-')f=-1;
for(;ch>='0'&&ch<='9';ch=getchar())x=x*10+ch-'0';
return x*f;
}
int main(){
n=read();m=read();k=read();x=read();s=read();
ans=8e18;
for(int i=1;i<=m;i++)p1[i].x=read();
for(int i=1;i<=m;i++)p1[i].y=read();
for(int i=1;i<=k;i++)p2[i].x=read();
for(int i=1;i<=k;i++)p2[i].y=read();
sort(p1+1,p1+m+1,comp);sort(p2+1,p2+k+1,cmp);
for(int i=1;i<=k;i++)mx[i]=max(mx[i-1],p2[i].x);
p1[0].x=x;
for(int i=0,j=k;i<=m;i++){
while(1ll*p2[j].y+p1[i].y>s&&j>=0)j--;
if(j>=0)ans=min(ans,1LL*max(n-mx[j],0)*p1[i].x);
}
printf("%lld\n",ans);
return 0;
}

D:恶心模拟题。。。(一遍敲对,好爽啊)

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int n,a,b,p[9][4];
char s[3];
int read(){
int x=0,f=1;char ch;
for(ch=getchar();ch<'0'||ch>'9';ch=getchar())if(ch=='-')f=-1;
for(;ch>='0'&&ch<='9';ch=getchar())x=x*10+ch-'0';
return x*f;
}
int main(){
n=read();a=read();b=read();
for(int i=1,x,y;i<=n;i++){
scanf("%s",s+1);x=read();y=read();int z;
if(s[1]=='R')z=2;else if(s[1]=='B')z=1;else z=3;
if(x==a&&y<b&&(y>p[1][1]||p[1][3]==0))p[1][0]=x,p[1][1]=y,p[1][3]=z;
if(x==a&&y>b&&(y<p[5][1]||p[5][3]==0))p[5][0]=x,p[5][1]=y,p[5][3]=z;
if(y==b&&x<a&&(x>p[3][0]||p[3][3]==0))p[3][0]=x,p[3][1]=y,p[3][3]=z;
if(y==b&&x>a&&(x<p[7][0]||p[7][3]==0))p[7][0]=x,p[7][1]=y,p[7][3]=z;
if(a-x==b-y&&x<a&&(x>p[2][0]||p[2][3]==0))p[2][0]=x,p[2][1]=y,p[2][3]=z;
if(a-x==b-y&&x>a&&(x<p[6][0]||p[6][3]==0))p[6][0]=x,p[6][1]=y,p[6][3]=z;
if(a+b==x+y&&x<a&&(x>p[4][0]||p[4][3]==0))p[4][0]=x,p[4][1]=y,p[4][3]=z;
if(a+b==x+y&&x>a&&(x<p[8][0]||p[8][3]==0))p[8][0]=x,p[8][1]=y,p[8][3]=z;
}
bool bo=0;
if(p[1][3]>1||p[3][3]>1||p[5][3]>1||p[7][3]>1)bo=1;
if(p[2][3]==1||p[2][3]==3||p[4][3]==1||p[4][3]==3||p[6][3]==1||p[6][3]==3||p[8][3]==1||p[8][3]==3)bo=1;
if(bo)puts("YES");else puts("NO");
return 0;
}

E:考虑把同颜色的联通块缩点,那么缩点后一定是黑白相间的。我们可以从直径中间开始变色,那么ans=(直径长度+1)/2.

#include<cstdio>
#include<cstring>
#include<algorithm>
#define maxn 200005
using namespace std;
int n,ans,col[maxn],tot,h[maxn],way[maxn*2],Next[maxn*2];
int read(){
int x=0,f=1;char ch;
for(ch=getchar();ch<'0'||ch>'9';ch=getchar())if(ch=='-')f=-1;
for(;ch>='0'&&ch<='9';ch=getchar())x=x*10+ch-'0';
return x*f;
}
void insert(int x,int y){way[++tot]=y;Next[tot]=h[x];h[x]=tot;}
int dfs(int x,int fa){
int mx=0,cx=0;
for(int j=h[x];j;j=Next[j])if(way[j]!=fa){
int y=dfs(way[j],x);
if(col[x]!=col[way[j]])y++;
if(y>mx)cx=mx,mx=y;
else if(y>cx)cx=y;
}
ans=max(ans,mx+cx);
return mx;
}
int main(){
n=read();
for(int i=1;i<=n;i++)col[i]=read();
for(int i=1,x,y;i<n;i++){
x=read();y=read();
insert(x,y);insert(y,x);
}
dfs(1,0);printf("%d\n",(ans+1)/2);
return 0;
}

F:只要想到a&b+a|b==a+b就好写了。设sum为sigma{a[i]},则b[i]+c[i]=a[i]*n+sum。把a[i]算出来,再判断是否合法就好了。

#include<cstdio>
#include<cstring>
#include<algorithm>
#define maxn 200005
using namespace std;
typedef long long ll;
ll n,sum,a[maxn],b[maxn],c[maxn],w[65];
ll read(){
ll x=0,f=1;char ch;
for(ch=getchar();ch<'0'||ch>'9';ch=getchar())if(ch=='-')f=-1;
for(;ch>='0'&&ch<='9';ch=getchar())x=x*10+ch-'0';
return x*f;
}
int main(){
n=read();
for(int i=1;i<=n;i++)b[i]=read(),sum+=b[i];
for(int i=1;i<=n;i++)c[i]=read(),sum+=c[i];
if(sum%(2*n)){puts("-1");return 0;}
sum/=2*n;
for(int i=1;i<=n;i++){
if((b[i]+c[i]-sum)%n){puts("-1");return 0;}
a[i]=(b[i]+c[i]-sum)/n;
if(b[i]>n*a[i]||c[i]<n*a[i]){puts("-1");return 0;}
}
for(int i=1;i<=n;i++)
for(int j=0;j<=60;j++)
w[j]+=a[i]>>j&1;
for(int i=1;i<=n;i++){
ll p=0,pp=0;
for(int j=0;j<=60;j++)
if(a[i]>>j&1)p+=w[j]*(1ll<<j),pp+=n*(1ll<<j);
else pp+=w[j]*(1ll<<j);
if(p!=b[i]&&pp!=c[i]){puts("-1");return 0;}
}
for(int i=1;i<=n;i++)printf("%lld ",a[i]);puts("");
return 0;
}

CFRound#379(div2)的更多相关文章

  1. CFround#380 div2

    题目链接:http://codeforces.com/contest/738 A题:SB题. B题:SB题. C题:二分. D题:贪心. E题:乱搞. F题:设f[i][j][k]代表甲先手,左边消去 ...

  2. bc#54 div2

    用小号做的div2 A:竟然看错了排序顺序...白白WA了两发 注意读入一整行(包括空格):getline(cin,st) [gets也是资瓷的 #include<iostream> us ...

  3. Codeforces Round #370 - #379 (Div. 2)

    题意: 思路: Codeforces Round #370(Solved: 4 out of 5) A - Memory and Crow 题意:有一个序列,然后对每一个进行ai = bi - bi  ...

  4. 379. Design Phone Directory

    379. Design Phone Directory Design a Phone Directory which supports the following operations: get: P ...

  5. Codeforces Round #379 (Div. 2) Analyses By Team:Red & Black

    A.Anton and Danik Problems: 给你长度为N的,只含'A','D'的序列,统计并输出何者出现的较多,相同为"Friendship" Analysis: lu ...

  6. $('div a') 与$('div>a'),.div+.div2与.div~.div2

    $('div a'):div标签下所有层次a元素的jquery对象 $('div>a'):div标签下子元素层次a元素的jquery对象 <body> <div class=' ...

  7. SRM 657 DIV2

    -------一直想打SRM,但是感觉Topcoder用起来太麻烦了.题目还是英文,不过没什么事干还是来打一打好了.但是刚注册的号只能打DIV2,反正我这么弱也只适合DIV2了.. T1: 题目大意: ...

  8. CodeForces Round 192 Div2

    This is the first time I took part in Codeforces Competition.The only felt is that my IQ was contemp ...

  9. Codeforce Round #211 Div2

    真的是b到不行啊! 尼玛C题一个这么简单的题目没出 aabbccddee 正确的是aabccdee 我的是   aabcdee 硬是TM的不够用,想半天还以为自己的是对的... A:题... B:题. ...

随机推荐

  1. jquery简单异步读取xml文件

    $.ajax({            url: '../XmlFiles/Sm.xml',            async: true,            cache: false,      ...

  2. mvc4项目数据库优先的尝试

    对于mvc代码优先原则,感觉真不知道为什么硬要设计这种模式,代码优先使得每次运行程序都要重建数据库,现实中这种模式有什么用呢. 数据库优先可能有好多方式,看了好久才做出来一种比较简单的.通过先添加一个 ...

  3. win8 客户端源码

    博客园cnblogs for win8 托管到GitHub开源   中午研究了下GitHub ,然后把博客园cnblogs win8 客户端源码放到了上面. 源码网址是: https://github ...

  4. C程序设计语言(第二版)习题:第一章

    第一章虽然感觉不像是个习题.但是我还是认真去做,去想,仅此而已! 练习 1-1 Run the "hello, world" program on your system. Exp ...

  5. 朴素贝页斯分类法 c++实现

    朴素贝叶斯法是基于贝叶斯定理与特征条件独立假设的分类方法.对于搞机器学习的同学们来说,这是相对简单但效果较好的模型. 朴素贝叶斯方法的理论 设输入为n维特征向量X={x1,x2,...,xn},输出为 ...

  6. EditPlus 3设置字体大小

    EditPlus设置字体大小 tools ---> preferences ---> fonts

  7. SugarSync网盘之NSDateFormatter

    NSDateFormatter 在获取sugarsync网盘的accessToken时候,得到了过期时间.但是这里的过期时间采用的是世界标准时间UTC,而该网盘是国外的,所以在国内显示的时间就不对了, ...

  8. [google面试CTCI]1-3.字符串去重

    [字符串与数组] Q:Design an algorithm and write code to remove the duplicate characters in a string without ...

  9. ASP.NET MVC页面UI之联动下拉选择控件(省、市、县联动选择)

    地区选择操作在WEB应用中比较常见的操作,本文在.net mvc3下实现了省市县三级联动选择功能. 本文博客出处:http://www.kwstu.com/ArticleView/admin_2013 ...

  10. 把事务封装成类似Serializable用法的特性

    把事务封装成类似Serializable用法的特性 最近几天上班没事可做就想着整理常用的类库方法,验证.消息.分页.模版引擎.数据库操作.ini操作.文本操作.xml操作等,最后就是现在这个事务特性. ...