A

签到贪心题,特判了n=1或m=1的情况才发现2<=n,m<=1e5

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=1e5+;
int n,m;
ll ans,a[N],b[N];
int main()
{
scanf("%d%d",&n,&m);
for(int i=;i<=n;i++)scanf("%I64d",&a[i]);
for(int i=;i<=m;i++)scanf("%I64d",&b[i]);
sort(a+,a+n+);
sort(b+,b+m+);
if(a[n]>b[]){puts("-1");return ;}
if(n==)
{
if(a[]<b[]){puts("-1");return ;}
for(int i=;i<=m;i++)ans+=b[i];
cout<<ans;return ;
}
if(m==)
{
if(a[n]<b[]){puts("-1");return ;}
for(int i=;i<=n;i++)ans+=a[i];
cout<<ans;return ;
}
if(a[n]==b[])
{
for(int i=;i<=m;i++)ans+=b[i];
for(int i=;i<n;i++)ans+=a[i]*m;
cout<<ans;return ;
}
ans=a[n];for(int i=;i<=m;i++)ans+=b[i];
ans+=b[]+a[n-]*(m-);
for(int i=n-;i;i--)ans+=a[i]*m;
cout<<ans;
}

B

结论题,根本看不出来,k=1特判掉,其余构造方案是这样的:让循环节长度为(n-k)/2+1,然后为10…0即可,推一下发现是正确的。

#include<bits/stdc++.h>
using namespace std;
int n,k,l;
int main()
{
cin>>n>>k;
if(k==)
{
for(int i=;i<n;i++)cout<<;cout<<;
return ;
}
l=(n-k)/+;
for(int i=;i<n;i++)cout<<!(i%l);
}

C

其实每个nxt不为1位置就是两个限制:1、a[nxt]>a[i]。2、a[i+1...nxt-1]<a[i]。然后根据这个建立拓扑图,进行拓扑排序即可。不过由于边数是O(n2)的,对于第二种边考虑线段树优化建图,实际上也不需要线段树优化建边,写普通的线段树即可。把大数连边向小数,然后修改时度数直接线段树-1减就行了。减的过程中,线段树维护的是区间度数最小值,发现最小值为0时,把其加入队列,并把该位置最小值赋值为无穷大即可。

#include<bits/stdc++.h>
#define lson l,mid,rt<<1
#define rson mid+1,r,rt<<1|1
using namespace std;
const int N=5e5+;
int n,m,sr[N],vis[N],ans[N],lazy[N<<],mn[N<<];
vector<int>G[N];
queue<int>q;
void build(int l,int r,int rt)
{
lazy[rt]=mn[rt]=;
if(l==r)return;
int mid=l+r>>;
build(lson),build(rson);
}
void pushdown(int rt)
{
lazy[rt<<]+=lazy[rt],mn[rt<<]+=lazy[rt];
lazy[rt<<|]+=lazy[rt],mn[rt<<|]+=lazy[rt];
lazy[rt]=;
}
void modify(int l,int r,int rt)
{
if(l==r){mn[rt]=1e9,q.push(l);return;}
pushdown(rt);
int mid=l+r>>;
if(!mn[rt<<])modify(lson);
if(!mn[rt<<|])modify(rson);
mn[rt]=min(mn[rt<<],mn[rt<<|]);
}
void update(int L,int R,int v,int l,int r,int rt)
{
if(L<=l&&r<=R)
{
lazy[rt]+=v,mn[rt]+=v;
if(!mn[rt])modify(l,r,rt);
return;
}
pushdown(rt);
int mid=l+r>>;
if(L<=mid)update(L,R,v,lson);
if(R>mid)update(L,R,v,rson);
mn[rt]=min(mn[rt<<],mn[rt<<|]);
}
int main()
{
int T;scanf("%d",&T);
while(T--)
{
scanf("%d",&n);
for(int i=;i<=n;i++)G[i].clear(),vis[i]=;
build(,n,);
for(int i=;i<=n;i++)
{
sr[i]=-;
int x;scanf("%d",&x);
if(x==-)continue;
if(x<=n)G[x].push_back(i),update(i,i,,,n,);
if(x>i+)sr[i]=x-,update(i+,x-,,,n,);
}
while(!q.empty())q.pop();
if(!mn[])modify(,n,);
m=n;
while(!q.empty())
{
int u=q.front();q.pop();
ans[u]=m--;
for(int i=;i<G[u].size();i++)update(G[u][i],G[u][i],-,,n,);
if(sr[u]!=-)update(u+,sr[u],-,,n,);
}
if(m)puts("-1");
else{
for(int i=;i<=n;i++)printf("%d ",ans[i]);
puts("");
}
}
}

D

首先把所有点像求解凸包一样,按照横坐标排序,横坐标相同按纵坐标排序。然后可以贪心地考虑。首先第一个点必须在凸包上,对于这样的点,其对于L/R都有选择的机会,然后选择后,第二个点从n-1个点中选择最外侧的点,满足其余的n-2个点在a[2]-a[1]的左/右侧,这个计算叉积即可。然后接下来的求解方法是一样的,反复如此操作即可找到符合条件的排列,因此没有puts("-1")的情况。复杂度为常数较大(因为涉及实数运算)的O(n2)。

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=;
struct point{
ll x,y;int id;
point(){x=y=;}
point(ll a,ll b){x=a,y=b;}
point operator-(const point&t)const{return point(x-t.x,y-t.y);}
bool operator<(const point&t)const{return x==t.x?y<t.y:x<t.x;}
}a[N];
int n,m,vis[N],ans[N];
char str[N];
int sign(ll x){return x==?:(x>?:-);}
bool cmp(point a,point b){return a.id<b.id;}
ll cross(point a,point b){return a.x*b.y-a.y*b.x;}
int main()
{
scanf("%d",&n);
for(int i=;i<=n;i++)scanf("%lld%lld",&a[i].x,&a[i].y),a[i].id=i;
sort(a+,a+n+);
ans[++m]=a[].id,vis[a[].id]=;
scanf("%s",str+);
sort(a+,a+n+,cmp);
for(int i=;i<=n-;i++)
{
int k=,flag=str[i]=='L'?:-;
for(int j=;j<=n;j++)
if(!vis[j]&&(!k||sign(cross(a[k]-a[ans[i]],a[j]-a[k]))!=flag))k=j;
ans[++m]=k,vis[k]=;
}
for(int i=;i<=n;i++)if(!vis[i])ans[++m]=i;
for(int i=;i<=n;i++)printf("%d ",ans[i]);
}

EF

咕了。

result:rank251 rating-=41。这场人怎么这么少?都去打CTS了?

Codeforces Round #559(Div.1)的更多相关文章

  1. Codeforces Round #366 (Div. 2) ABC

    Codeforces Round #366 (Div. 2) A I hate that I love that I hate it水题 #I hate that I love that I hate ...

  2. Codeforces Round #354 (Div. 2) ABCD

    Codeforces Round #354 (Div. 2) Problems     # Name     A Nicholas and Permutation standard input/out ...

  3. Codeforces Round #368 (Div. 2)

    直达–>Codeforces Round #368 (Div. 2) A Brain’s Photos 给你一个NxM的矩阵,一个字母代表一种颜色,如果有”C”,”M”,”Y”三种中任意一种就输 ...

  4. cf之路,1,Codeforces Round #345 (Div. 2)

     cf之路,1,Codeforces Round #345 (Div. 2) ps:昨天第一次参加cf比赛,比赛之前为了熟悉下cf比赛题目的难度.所以做了round#345连试试水的深浅.....   ...

  5. Codeforces Round #279 (Div. 2) ABCDE

    Codeforces Round #279 (Div. 2) 做得我都变绿了! Problems     # Name     A Team Olympiad standard input/outpu ...

  6. Codeforces Round #262 (Div. 2) 1003

    Codeforces Round #262 (Div. 2) 1003 C. Present time limit per test 2 seconds memory limit per test 2 ...

  7. Codeforces Round #262 (Div. 2) 1004

    Codeforces Round #262 (Div. 2) 1004 D. Little Victor and Set time limit per test 1 second memory lim ...

  8. Codeforces Round #371 (Div. 1)

    A: 题目大意: 在一个multiset中要求支持3种操作: 1.增加一个数 2.删去一个数 3.给出一个01序列,问multiset中有多少这样的数,把它的十进制表示中的奇数改成1,偶数改成0后和给 ...

  9. Codeforces Round #268 (Div. 2) ABCD

    CF469 Codeforces Round #268 (Div. 2) http://codeforces.com/contest/469 开学了,时间少,水题就不写题解了,不水的题也不写这么详细了 ...

随机推荐

  1. 原子类型字段更新器AtomicXxxxFieldUpdater

    本博客系列是学习并发编程过程中的记录总结.由于文章比较多,写的时间也比较散,所以我整理了个目录贴(传送门),方便查阅. 并发编程系列博客传送门 原子类型字段更新器 在java.util.concurr ...

  2. javascript 连续赋值(连等运算)问题研究

    前几天看到一个javascript 连续赋值的问题,运行了一下,结果出乎意料,发现这里的水真的有点深啊,连续赋值的底层机制,没有一本前端书籍有详细介绍的,自己做实验研究了一下,先来看结果: var a ...

  3. 一天一个设计模式——(Singleton)单例模式(线程安全性)

    一.模式说明 有时候,我们希望在应用程序中,仅生成某个类的一个实例,这时候需要用到单例模式. 二.模式类图 三.模式中的角色 Singleton角色,该模式中仅有的一个角色,该角色有一个返回唯一实例的 ...

  4. Vue-router的介绍

    1.路由基础介绍 (1)什么是前端路由: 路由是根据不同的URL地址展示不同的内容或页面. 前端路由就是把不同路由对应不同的内容或页面的任务交给前端来做.之前是通过服务端根据URL的不同返回不同的页面 ...

  5. Java 语言特性【一】——JUC(Java 并发工具包)

    引言 JUC即java.util.concurrent,是java提供的用于多线程处理的工具类库.重点关注 ConcurrentXXX.AtomicXXX.Executor.Caller&&a ...

  6. js数组全等

    js 数组全等(对象) if(this.eqOrNotEq(arr)){} eqOrNotEq(arr) { return !arr.some(function(value, index) { ret ...

  7. EOJ Monthly 2020.1 E. 数的变幻

    题目链接:https://acm.ecnu.edu.cn/contest/247/problem/E/ 这道题是cf原题: Codeforces Round #608 (Div. 2) E. Comm ...

  8. 查看电脑连接的WiFi的密码

    这里提供两种办法:图形界面操作版.命令行操作版 方法一: 打开控制面板 点击红色框部分 方法二 打开命令行:输入命令netsh wlan show profiles "连接的WiFi的名称& ...

  9. Linux--Centos安装VNC

    参考:https://linux.cn/article-5335-1.html 安装 vnc 服务器 yum install tigervnc-server -y 配置 vnc .service 更改 ...

  10. 洛谷 P2871 [USACO07DEC]手链Charm Bracelet && 01背包模板

    题目传送门 解题思路: 一维解01背包,突然发现博客里没有01背包的板子,补上 AC代码: #include<cstdio> #include<iostream> using ...