套题 codeforces 359
A题:Free Ice Cream
注意要使用LL,避免爆int
#include <bits/stdc++.h>
#define scan(x,y) scanf("%d%d",&x,&y)
using namespace std;
typedef long long LL;
const int Max=1e5+;
int main()
{
int n,has,x;
while(~scan(n,has))
{
LL have=has;
char op;LL dis=;
for(int i=;i<n;i++)
{
cin>>op>>x;
if(op=='+')
{
have+=x;
}
else
{
if(have>=x) have-=x;
else dis++;
}
}
printf("%I64d %I64d\n",have,dis);
}
}
B题:Little Robber Girl's Zoo
不要想得太复杂,直接暴力就好
#include <bits/stdc++.h>
#define scan(x,y) scanf("%d%d",&x,&y)
using namespace std;
typedef long long LL;
const int Max=1e3+;
int a[Max][Max],L[Max],R[Max],best[Max],l,r;
int g=,n;
bool check()
{
int i=,cnt=,cunt=;
memset(L,,sizeof(L));memset(R,,sizeof(R));
while(i<n)
{
if(best[i]>best[i+])
{
cnt++;
swap(best[i],best[i+]);
if(cnt==) {L[cunt]=i;R[cunt++]=i+;}
else
{
if(i-==R[cunt-]) R[cunt-]=i+;
else {L[cunt]=i;R[cunt++]=i+;}
}
i+=;
}
else
{
i++;
}
}
if(cnt==) return ;
for(int i=;i<cunt;i++) printf("%d %d\n",L[i],R[i]);
return ;
}
int main()
{
while(~scanf("%d",&n))
{
g=;
for(int i=;i<=n;i++) scanf("%d",&best[i]);
memset(a,,sizeof(a));
while(!check());
}
return ;
}
C题:Robbers' watch
观察可知,由于时间表是7进制的,所以整个可行的序列长不会超过7位,因此可以套用数位dp的模式进行dfs搜索
#include <bits/stdc++.h>
using namespace std;
int ans,n,m;
int vis[];
int bit[][];
int pos[];
stack<int>st1,st;
void dfs2(int len,int flag,int id)
{
if(len==)
{
ans++;
return;
}
int end=flag?bit[id][len]:;
for(int i=;i<=end;i++)
{
if(!vis[i])
{
vis[i]=;
dfs2(len-,i==end&&flag,id);
vis[i]=;
}
}
}
void dfs(int len,int flag,int id)
{
if(len==)
{
if(id==) dfs2(pos[],,);
return;
}
int end=flag?bit[id][len]:;
for(int i=;i<=end;i++)
{
if(!vis[i])
{
vis[i]=;
dfs(len-,i==end&&flag,id);
vis[i]=;
}
}
}
int cacu(int x,int y)
{
pos[]=;
bit[][]=bit[][]=;
if(x<) bit[][++pos[]]=x;
else
{
while(x)
{
bit[][++pos[]]=x%;
x/=;
}
}
pos[]=;
if(y<) bit[][++pos[]]=y;
else
{
while(y)
{
bit[][++pos[]]=y%;
y/=;
}
}
if(pos[]+pos[]>) return ;
else dfs(pos[],,);
return ;
}
int main()
{
while(~scanf("%d%d",&n,&m))
{
ans=;
n--;m--;
printf("%d\n",cacu(n,m)==?:ans);
}
return ;
}
D题:Kay and Snowflake
1.重心的另一个定义:以这个点为根,那么所有的子树(不算整个树自身)
的大小都不超过整个树大小的一半。(这个对解这道题很有用)
题解思路:
对于以u为根节点的子树,重心肯定在它的重儿子之中,但是有一个范围
可以想到重心的下区间是重儿子的重心,上区间就是u自己
可以对于这个范围内的节点,利用性质1逐个检测。
#include <bits/stdc++.h>
using namespace std;
const int Max=3e5+;
const int E=Max*;
int son[Max],maxson[Max],fa[Max],zx[Max];
int head[Max],nex[E],pnt[E],edge;
void Init()
{
edge=;
memset(son,,sizeof(son));
memset(maxson,,sizeof(maxson));
memset(fa,-,sizeof(fa));
memset(head,-,sizeof(head));
}
void Addedge(int u,int v)
{
pnt[edge]=v;
nex[edge]=head[u];
head[u]=edge++;
}
void dfs1(int u)
{
son[u]=;
maxson[u]=;
int v;
for(int e=head[u];e!=-;e=nex[e])
{
v=pnt[e];
dfs1(v);
son[u]+=son[v];
maxson[u]=max(maxson[u],son[v]);
}
}
bool is_ok(int u,int v)
{
if(son[u]>=maxson[v]*&&son[u]>=(son[u]-son[v])*) return ;
//利用定义4,检测是否是正确的重心,存在u自身的情况
//所以不能son[u]>=son[v]*2;
return ;
}
void dfs2(int u)
{
if(son[u]==)
{
zx[u]=u;
return;
}
int v,z=u;
for(int e=head[u];e!=-;e=nex[e])
{
v=pnt[e];
dfs2(v);
if(maxson[u]==son[v])
{
z=zx[v];
}
}
while(!is_ok(u,z)&&fa[z]!=-)
{
z=fa[z];
}
zx[u]=z;
}
int main()
{
int n,m;
while(~scanf("%d%d",&n,&m))
{
Init();
int u,v;
for(int i=;i<=n;i++)
{
scanf("%d",&u);
fa[i]=u;
Addedge(u,i);
}
dfs1();
dfs2();
while(m--)
{
scanf("%d",&u);
printf("%d\n",zx[u]);
}
}
return ;
}
E题:Optimal Point
题解链接:http://codeforces.com/blog/entry/45558
#include <bits/stdc++.h>
using namespace std;
#define MP(x,y) make_pair(x,y);
typedef long long LL;
const int Max=1e5+;
const LL inf=*(LL)1e9*(LL)1e9+;
//(1e18不能直接写,会爆int)
const LL LM=(LL()<<)*(LL()<<)*(LL()<<)-;
const LL LMM=-(LL()<<)*(LL()<<)*(LL()<<)+;
LL max(LL x,LL y){return x>=y?x:y;}
LL min(LL x,LL y){return x<=y?x:y;}
int n;
struct coord{
LL x,y,z;
coord(){};
coord(LL xx,LL yy,LL zz):x(xx),y(yy),z(zz){}
}node[Max];
struct equa{
pair<LL,LL> s;
pair<LL,LL> a;
pair<LL,LL> b;
pair<LL,LL> c;
equa operator + (const equa e)
{
equa ans;
ans.s=MP(max(s.first,e.s.first),min(s.second,e.s.second));
ans.a=MP(max(a.first,e.a.first),min(a.second,e.a.second));
ans.b=MP(max(b.first,e.b.first),min(b.second,e.b.second));
ans.c=MP(max(c.first,e.c.first),min(c.second,e.c.second));
return ans;
}
};
void Acc()
{
std::iostream::sync_with_stdio(false);
cin.tie(NULL);cout.tie(NULL);
}
LL Getmid(LL x)
{
return (x-(x&))/;
} struct coord Getsolu(const equa &x)
{
if(x.s.first>x.s.second||
x.a.first>x.a.second||
x.b.first>x.b.second||
x.c.first>x.c.second) return coord(LM,LM,LM);
if(x.a.first+x.b.first+x.c.first>x.s.second||
x.a.second+x.b.second+x.c.second<x.s.first)
return coord(LM,LM,LM); coord res;
res.x=x.a.first;
res.y=x.b.first;
res.z=x.c.first;
LL delta=max(LL(),x.s.first-res.x-res.y-res.z);
res.x+=min(delta,x.a.second-x.a.first);
delta-=min(delta,x.a.second-x.a.first);
res.y+=min(delta,x.b.second-x.b.first);
delta-=min(delta,x.b.second-x.b.first);
res.z+=min(delta,x.c.second-x.c.first);
delta-=min(delta,x.c.second-x.c.first);
assert(delta==);
return res;
}
struct coord Cacu(LL Maxlen)
{
//设Maxlen为最大距离
equa eq;
eq.s=eq.a=eq.b=eq.c=MP(LMM,LM);
for(int i=;i<=n;i++)
{
equa ne;
// -Maxlen<=A+B+C<=Maxlen
// -Maxlen<=A<=Maxlen
// -Maxlen<=B<=Maxlen
// -Maxlen<=C<=Maxlen
ne.s=MP(node[i].x+node[i].y+node[i].z-Maxlen,
node[i].x+node[i].y+node[i].z+Maxlen);
ne.a=MP(-node[i].x+node[i].y+node[i].z-Maxlen,
-node[i].x+node[i].y+node[i].z+Maxlen);
ne.b=MP(node[i].x-node[i].y+node[i].z-Maxlen,
node[i].x-node[i].y+node[i].z+Maxlen);
ne.c=MP(node[i].x+node[i].y-node[i].z-Maxlen,
node[i].x+node[i].y-node[i].z+Maxlen);
eq=eq+ne; //取最大距离
}
for(LL r=;r<=;r++)
{
//对二取余,可能余1或者余0
equa tr=eq;
tr.s.first=Getmid(tr.s.first-(*r-));
tr.a.first=Getmid(tr.a.first-(r-));
tr.b.first=Getmid(tr.b.first-(r-));
tr.c.first=Getmid(tr.c.first-(r-)); tr.s.second=Getmid(tr.s.second-(*r));
tr.a.second=Getmid(tr.a.second-(r));
tr.b.second=Getmid(tr.b.second-(r));
tr.c.second=Getmid(tr.c.second-(r)); coord solu=Getsolu(tr);
if(solu.x!=LM)
{
coord ans;
//(A,B奇偶性相同才会有整数解)
ans.x=r+solu.y+solu.z;
ans.y=r+solu.x+solu.z;
ans.z=r+solu.x+solu.y;
return ans;
}
}
return coord(LM,LM,LM); //有超过Maxlen的距离或者无整数解
}
int main()
{
Acc();
int T;
for(cin>>T;T;T--)
{
cin>>n;
for(int i=;i<=n;i++)
{
cin>>node[i].x>>node[i].y>>node[i].z;
}
LL l=,r=LM,answ=;
while(l<=r)
{
LL mid=l+(r-l)/;
if(Cacu(mid).x!=LM) r=mid-,answ=mid;
else l=mid+;
}
coord ans=Cacu(answ);
cout<<ans.x<<" "<<ans.y<<" "<<ans.z<<endl;
}
return ;
}
套题 codeforces 359的更多相关文章
- 套题 codeforces 361
A题((Mike and Cellphone) 看起来好像需要模拟数字键位的运动,可是,只要判断出那些必然YES的数字组合不就好了么 #include <cstdio> #include ...
- 套题 codeforces 360
A题:Opponents 直接模拟 #include <bits/stdc++.h> using namespace std; ]; int main() { int n,k; while ...
- 套题 Codeforces Round #277 (Div. 2)
A. Calculating Function 水题,分奇数偶数处理一下就好了 #include<stdio.h> #include<iostream> using names ...
- Educational Codeforces Round 15 套题
这套题最后一题不会,然后先放一下,最后一题应该是大数据结构题 A:求连续最长严格递增的的串,O(n)简单dp #include <cstdio> #include <cstdlib& ...
- 第46套题【STL】【贪心】【递推】【BFS 图】
已经有四套题没有写博客了.今天改的比较快,就有时间写.今天这套题是用的图片的形式,传上来不好看,就自己描述吧. 第一题:单词分类 题目大意:有n个单词(n<=10000),如果两个单词中每个字母 ...
- 【套题】qbxt国庆刷题班D1
Day1 事实上D1的题目还是比较简单的= =然而D1T2爆炸了就十分尴尬--错失一波键盘 看题 T1 传送门 Description 现在你手里有一个计算器,上面显示了一个数\(S\),这个计算器十 ...
- Moscow Pre-Finals Workshop 2016. Japanese School OI Team Selection. 套题详细解题报告
写在前面 谨以此篇题解致敬出题人! 真的期盼国内也能多出现一些这样质量的比赛啊.9道题中,没有一道凑数的题目,更没有码农题,任何一题拿出来都是为数不多的好题.可以说是这一年打过的题目质量最棒的五场比赛 ...
- Codeforces Round #579 (Div. 3) 套题 题解
A. Circle of Students 题目:https://codeforces.com/contest/1203/problem/A 题意:一堆人坐成一个环,问能否按逆时针或者顺时针 ...
- Codeforces Round #361 (Div. 2) 套题
A - Mike and Cellphone 问有没有多解,每个点按照给出的序列用向量法跑一遍 #include<cstdio> #include<cstring> #incl ...
随机推荐
- PIC32MZ tutorial -- Change Notification
In my last post I implement "Key Debounce" with port polling, port polling is not very eff ...
- Angular $http解析通过接口获得的json数据
刚接触angular不久,对很多东西都不了解,今天需要用angular通过接口得到json数据,折腾了好久,总算是能获取到数据了,下面是部分源码,仅供参考: HTML部分: <body ng-a ...
- SQLSERVER | 查询数据库中所有的表的名字 | 查询数据库中的所有数据库名
SQLSERVER 1.查询某个数据库中所有的表名: SELECT Name FROM SysObjects Where XType='U' ORDER BY Name 2.查询数据库中的所有数据库 ...
- js获取浏览器窗口可视区域大小
获得浏览器窗口的尺寸(浏览器的视口,不包括工具栏和滚动条)的方法: 一.对于IE9+.Chrome.Firefox.Opera 以及 Safari: • window.innerHeight - 浏 ...
- sscanf函数和正则表达式
看了几篇介绍sscanf函数,真是发现自己好多东西没理解透,详细介绍使用在sscanf中使用正则表达式. 第一篇: 此文所有的实验都是基于下面的程序: char str[10]; for (int i ...
- Support Vector Machine (1) : 简单SVM原理
目录 Support Vector Machine (1) : 简单SVM原理 Support Vector Machine (2) : Sequential Minimal Optimization ...
- div一直浮动在页面的底部
永远在底部是那种无论滚动条怎么拉,都可以看见悬浮在底部的那种,如果是那种,是用固定定位做的.另外注意页面中最后的元素或者body要空出固定条的高度,不然最后的元素会被遮挡. html: <div ...
- Mahout源码分析之 -- 文档向量化TF-IDF
fesh个人实践,欢迎经验交流!Blog地址:http://www.cnblogs.com/fesh/p/3775429.html Mahout之SparseVectorsFromSequenceFi ...
- 【Android UI设计与开发】第05期:引导界面(五)实现应用程序只启动一次引导界面
[Android UI设计与开发]第05期:引导界面(五)实现应用程序只启动一次引导界面 jingqing 发表于 2013-7-11 14:42:02 浏览(229501) 这篇文章算是对整个引导界 ...
- C#拼接地图瓦片
为了在AE程序中使用离线的电子地图,思路如下: 利用下载工具下载地图切片,然后利用C#进行切片拼接成一张图片,最后使用ArcMap进行地理配准,然后发布成ArcGIS Server 切片服务供程序使用 ...