开场连wa三发A题,差点心态崩了,还好坚持打完了,一共A了三题

A题,判断能不能放第一个圆,能放的话,先手比赢

#include<map>
#include<set>
#include<cmath>
#include<queue>
#include<stack>
#include<vector>
#include<cstdio>
#include<cassert>
#include<iomanip>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#define pi acos(-1.0)
#define ll long long
#define mod 1000000007
#define ls l,m,rt<<1
#define rs m+1,r,rt<<1|1
#pragma comment(linker, "/STACK:1024000000,1024000000") using namespace std; const double g=10.0,eps=1e-;
const int N=+,maxn=+,inf=0x3f3f3f; int main()
{
ios::sync_with_stdio(false);
cin.tie();
int a,b,r;
cin>>a>>b>>r;
if(a>=*r&&b>=*r)cout<<"First"<<endl;
else cout<<"Second"<<endl;
return ;
}
/********************* *********************/

A

B题,数学题,模拟一下就好了,注意符号一定要在第一个位置,刚开始用gcd负号在第二个数那里了wa了一发

#include<map>
#include<set>
#include<cmath>
#include<queue>
#include<stack>
#include<vector>
#include<cstdio>
#include<cassert>
#include<iomanip>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#define pi acos(-1.0)
#define ll long long
#define mod 1000000007
#define ls l,m,rt<<1
#define rs m+1,r,rt<<1|1
#pragma comment(linker, "/STACK:1024000000,1024000000") using namespace std; const double g=10.0,eps=1e-;
const int N=+,maxn=+,inf=0x3f3f3f; int gcd(int a,int b)
{
return b ? gcd(b,a%b):a;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie();
int n,m,a,b,a1,b1;
cin>>n>>m;
for(int i=;i<=n;i++)
{
cin>>a;
if(i==)a1=a;
}
for(int i=;i<=m;i++)
{
cin>>b;
if(i==)b1=b;
}
if(n>m)
{
if(a1*b1>)cout<<"Infinity"<<endl;
else cout<<"-Infinity"<<endl;
}
else if(n<m)cout<<"0/1"<<endl;
else
{
int x=gcd(a1,b1);
a1/=x;b1/=x;
if(a1*b1<)cout<<"-"<<abs(a1)<<"/"<<abs(b1)<<endl;
else cout<<abs(a1)<<"/"<<abs(b1)<<endl;
}
return ;
}
/********************* *********************/

B

C题才是最水的题。。。搞一个记录最大的数组从后往前扫一边就出来了

#include<map>
#include<set>
#include<cmath>
#include<queue>
#include<stack>
#include<vector>
#include<cstdio>
#include<cassert>
#include<iomanip>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#define pi acos(-1.0)
#define ll long long
#define mod 1000000007
#define ls l,m,rt<<1
#define rs m+1,r,rt<<1|1
#pragma comment(linker, "/STACK:1024000000,1024000000") using namespace std; const double g=10.0,eps=1e-;
const int N=+,maxn=+,inf=0x3f3f3f; int maxx[N];
int main()
{
ios::sync_with_stdio(false);
cin.tie();
string s;
cin>>s;
maxx[s.size()]=;
for(int i=s.size()-;i>=;i--)
maxx[i]=max(maxx[i+],s[i]-'');
string ans="";
for(int i=;i<s.size();i++)
{
if(maxx[i]==s[i]-'')ans+=s[i];
}
cout<<ans<<endl;
return ;
}
/********************* *********************/

C

D题,dfs,如果一个点能从两个方向到达的话,那就输出yes,用一个数组记录到达的位置

#include<map>
#include<set>
#include<cmath>
#include<queue>
#include<stack>
#include<vector>
#include<cstdio>
#include<cassert>
#include<iomanip>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#define pi acos(-1.0)
#define ll long long
#define mod 1000000007
#define ls l,m,rt<<1
#define rs m+1,r,rt<<1|1
#pragma comment(linker, "/STACK:1024000000,1024000000") using namespace std; const double g=10.0,eps=1e-;
const int N=+,maxn=+,inf=0x3f3f3f; char ma[N][N];
int dx[]= {,,-,};
int dy[]= {,,,-};
bool vis[N][N];
int n,m,sx,sy;
pair<int,int>v[N][N];
bool ok(int x,int y)
{
if(ma[x][y]=='.'&&!vis[x][y])return ;
return ;
}
void dfs(int x,int y)
{
int fx=x,fy=y;
while(fx<)fx+=n;
fx%=n;
while(fy<)fy+=m;
fy%=m;
if(vis[fx][fy]&&(v[fx][fy].first!=x||v[fx][fy].second!=y))
{
cout<<"Yes"<<endl;
exit();
}
if(!ok(fx,fy))return ;
vis[fx][fy]=;
v[fx][fy]=make_pair(x,y);
for(int i=;i<;i++)
dfs(x+dx[i],y+dy[i]);
}
int main()
{
ios::sync_with_stdio(false);
cin.tie();
cin>>n>>m;
for(int i=;i<n;i++)
{
for(int j=;j<m;j++)
{
cin>>ma[i][j];
if(ma[i][j]=='S')
{
sx=i;
sy=j;
ma[i][j]='.';
}
}
}
memset(vis,,sizeof vis);
dfs(sx,sy);
cout<<"No"<<endl;
return ;
}
/*********************
5 5
##.##
#..##
..###
.#S..
##.##
*********************/

D

E题,计算几何,极角排序,先dfs一遍预处理出每个节点有多少子节点,然后dfs一遍,每个区间进行极角排序(刚开始以为只需要一遍极角排序就行了,后来

#include<map>
#include<set>
#include<cmath>
#include<queue>
#include<stack>
#include<vector>
#include<cstdio>
#include<cassert>
#include<iomanip>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#define pi acos(-1.0)
#define ll long long
#define mod 1000000007
#define ls l,m,rt<<1
#define rs m+1,r,rt<<1|1
#pragma comment(linker, "/STACK:1024000000,1024000000") using namespace std; const double g=10.0,eps=1e-;
const int N=+,maxn=+,inf=0x3f3f3f; struct point {
double x,y;
int id;
}p[N];
point p0;
vector<int>v[N];
int sz[N],ans[N];
bool comp(point p1,point p2)
{
double te=(p2.x-p0.x)*(p1.y-p0.y)-(p2.y-p0.y)*(p1.x-p0.x);
if(te<)return ;
return ;
}
void dfs(int u,int fa)
{
sz[u]=;
for(int i=;i<v[u].size();i++)
if(v[u][i]!=fa)
{
dfs(v[u][i],u);
sz[u]+=sz[v[u][i]];
}
}
void dfssort(int u,int fa,int be,int en)
{
for(int i=be;i<en;i++)
if(p[i].x<p[be].x||(p[i].x==p[be].x&&p[i].y<p[be].y))
swap(p[i],p[be]);
p0=p[be];
ans[p[be].id]=u;
sort(p+be+,p+en,comp);
int te=be;
for(int i=; i<v[u].size(); i++)
{
if(v[u][i]!=fa)
{
dfssort(v[u][i],u,te+,te+sz[v[u][i]]+);
te+=sz[v[u][i]];
}
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie();
int n;
cin>>n;
for(int i=;i<n;i++)
{
int a,b;
cin>>a>>b;
v[a].push_back(b);
v[b].push_back(a);
}
for(int i=;i<n;i++)
{
cin>>p[i].x>>p[i].y;
p[i].id=i+;
}
dfs(,-);
// for(int i=1;i<=n;i++)cout<<sz[i]<<endl;
dfssort(,-,,n);
for(int i=;i<=n;i++)cout<<ans[i]<<" ";
cout<<endl;
return ;
}
/*********************
3
1 3
2 3
0 0
1 1
2 0
*********************/

E

发现这样子节点可能会坐标倒回来,有可能相交)

CodeForces - 197D的更多相关文章

  1. Codeforces 197D - Infinite Maze

    197D - Infinite Maze 思路:bfs,如果一个点被搜到第二次,那么就是符合要求的. 用vis[i][j].x,vis[i][j].y表示i,j(i,j是取模过后的值)这个点第一次被搜 ...

  2. [CodeForces - 197D] D - Infinite Maze

    D - Infinite Maze We've got a rectangular n × m-cell maze. Each cell is either passable, or is a wal ...

  3. python爬虫学习(5) —— 扒一下codeforces题面

    上一次我们拿学校的URP做了个小小的demo.... 其实我们还可以把每个学生的证件照爬下来做成一个证件照校花校草评比 另外也可以写一个物理实验自动选课... 但是出于多种原因,,还是绕开这些敏感话题 ...

  4. 【Codeforces 738D】Sea Battle(贪心)

    http://codeforces.com/contest/738/problem/D Galya is playing one-dimensional Sea Battle on a 1 × n g ...

  5. 【Codeforces 738C】Road to Cinema

    http://codeforces.com/contest/738/problem/C Vasya is currently at a car rental service, and he wants ...

  6. 【Codeforces 738A】Interview with Oleg

    http://codeforces.com/contest/738/problem/A Polycarp has interviewed Oleg and has written the interv ...

  7. CodeForces - 662A Gambling Nim

    http://codeforces.com/problemset/problem/662/A 题目大意: 给定n(n <= 500000)张卡片,每张卡片的两个面都写有数字,每个面都有0.5的概 ...

  8. CodeForces - 274B Zero Tree

    http://codeforces.com/problemset/problem/274/B 题目大意: 给定你一颗树,每个点上有权值. 现在你每次取出这颗树的一颗子树(即点集和边集均是原图的子集的连 ...

  9. CodeForces - 261B Maxim and Restaurant

    http://codeforces.com/problemset/problem/261/B 题目大意:给定n个数a1-an(n<=50,ai<=50),随机打乱后,记Si=a1+a2+a ...

随机推荐

  1. 转!java web项目 build path 导入jar包,tomcat启动报错 找不到该类

    在eclipse集成tomcat开发java web项目时,引入的外部jar包,编译通过,但启动tomcat运行web时提示找不到jar包内的类,需要作如下配置,将jar包在部署到集成的tomcat环 ...

  2. requests 中response如何改变编码格式

    查看初始编码 首先查看拿到的response编码格式: (就不放代码了,因为此例需要用到cookie,可自行找个网站具体测试) 可见初始编码为:ISO-8859-1 修改编码 初始编码: 修改后编码: ...

  3. python线程池/进程池创建

    进程池 import time from concurrent.futures import ProcessPoolExecutor def task(arg): time.sleep(2) prin ...

  4. 【我的Android进阶之旅】Android Studio查看Logcat时,如果一行Log太长如何换行显示?

    使用Android Studio一段时间了,还有很多小技巧没有掌握.今天又发现了一个比较好用的小技巧,这里分享出来. 1.Android Studio默认显示效果 比如我们用Logcat来查看打印的L ...

  5. HTML5之概述

    HTML5是万维网的核心语言.标准通用标记语言下的一个应用超文本标记语言(HTML)的第五次重大修改,是继HTML4.01和XHTML1.0之后的超文本标记语言的最新版本.它是由一群自由思想者组成的团 ...

  6. sql developer 如何格式化sql

    1.首先  Ctrl+A  全选需要格式的sql 2.然后  Ctrl+F7 即可格式化

  7. c++的格式控制

    1: 每个iostream对象维持一个控制IO格式化细节的格式状态.标准库定义了一组操纵符来修改对象的格式状态.所谓操纵符是可用作输入或输出操作符的函数或对象.iostream和iomanip头文件中 ...

  8. Sybase:删除表中的某列

    Sybases:删除表中的某列 alter table tb1(表名) drop clo1(列名); commit;

  9. D3学习之动画和变换

    D3学习之动画和变换 ##(17.02.27-02.28) 主要学习到了D3对动画和缓动函数的一些应用,结合前面的选择器.监听事件.自定义插值器等,拓展了动画的效果和样式. 主要内容 单元素动画 多元 ...

  10. promise两个参数的具体作用

    Promise通常配合then方法来链式的使用,then方法里面第一个回调函数表示成功状态,也就是resolve通过.then调用,第二个是失败状态-reject通过.Cath调用,如果默认写一个参数 ...