Div1 530

  • 感受到被Div1支配的恐惧了.jpg
  • 真·一个题都不会.jpg(虽然T1是我智障
  • 感受到被构造题支配的恐惧了.jpg

A

直接树上贪心就行,是我写错了.jpg

B

这个构造超级神仙有没有.jpg

给定的答案矩阵一定满足,每一行或者每一列只有两种不同的字符交替出现

然后枚举+贪心即可...

C

被老K Diss了.jpg

这题给人的第一印象就是一个非常智障的构造。

然后发现它还有要求...每个节点的度数最大值最小...

然后就不会了.jpg

(开什么玩笑,怎么可能不会!

然后就可以通过枚举这个最大值的方式解决,然后剩下的就直接连在某个点上来满足它的要求...

具体实现看代码吧...有点说不清

总之就是一个$K$叉树+一条链...

#include <bits/stdc++.h>
using namespace std;
#define N 100005
#define ll long long
int fa[N],n,p;ll now,a[N];
int main()
{
scanf("%d%lld",&n,&now);
if(now*2>(ll)n*(n+1))return puts("No"),0;
if(now<n*2-1)return puts("No"),0;
for(p=1;p<=n;p++)
{
long long dep=1,cnt=1,t=1,c=1;
while(cnt<n)c=c*p,dep++,t+=dep*min(c,n-cnt),cnt+=c;
if(t<=now)break;
}
puts("Yes");
long long dep=1,cnt=1,t=1,c=1;a[1]=1;
while(cnt<n)
{
dep++;c=c*p;a[dep]=min(c,n-cnt);
t+=dep*min(c,n-cnt),cnt+=c;
}now-=t;
long long now_d=dep,aft_d=dep+1;
while(now)
{
if(a[now_d]<=1)now_d--;
a[now_d]--;ll tmp=min(aft_d++,now_d+now);
now-=tmp-now_d;a[tmp]++;
}
int lst=1;
for(int i=2;i<aft_d;i++)
{
int nowp=lst-a[i-1]+1,nowk=0;
// printf("%lld\n",a[i]);
for(int j=lst+1;j<=lst+a[i];j++)
{
if(nowk==p)nowp++,nowk=0;
nowk++,fa[j]=nowp;
}lst+=a[i];
}
for(int i=2;i<=n;i++)printf("%d ",fa[i]);puts("");
}
//sdadasdasd

D

这个读题杀啊...

根本读不懂啊.jpg

读懂了就是维护一个动态前缀和来求满足这个式子$sum_{i-1}\times 2\le a_i$的$i$的数量.jpg

那么显然,答案小于$30$

然后就直接树状数组+set即可...

每次找到$\min {a_i}$然后每次翻倍去找+树状数组查前缀和.jpg

就是慢了点.jpg

#include <cstdio>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include <queue>
#include <iostream>
#include <bitset>
#include <set>
using namespace std;
#define N 500005
#define ll long long
int w[N],p[N],n,sp;char str[10];
multiset<int >s;int siz;ll c[N];
void fix(int x,int v){for(;x<=sp;x+=x&-x)c[x]+=v;}
ll find(int x){ll ret=0;for(;x;x-=x&-x)ret+=c[x];return ret;}
void add(int x){siz++;s.insert(p[x]);fix(x,p[x]);}
void del(int x){siz--;s.erase(s.find(p[-x]));fix(-x,-p[-x]);}
int get_ans()
{
if(!siz)return 0;
int ret=1,now=*s.begin();
while(1)
{
if(now>1e9)break;
if(s.upper_bound(now<<1)!=s.end())
{
int t=*s.upper_bound(now<<1);
t=lower_bound(p+1,p+sp+1,t)-p;
if(find(t-1)*2<p[t])ret++;now=p[t]+now;
}else return siz-ret;
}return siz-ret;
}
int main()
{
scanf("%d",&n);
for(int i=1;i<=n;i++)
scanf("%s%d",str,&p[i]),(str[0]=='+'?(w[i]=p[i]):(w[i]=-p[i]));
sort(p+1,p+n+1);sp=unique(p+1,p+n+1)-p-1;
for(int i=1;i<=n;i++)w[i]=(w[i]<0)?-(lower_bound(p+1,p+sp+1,-w[i])-p):lower_bound(p+1,p+sp+1,w[i])-p;
for(int i=1;i<=n;i++)
if(w[i]<0)del(w[i]),printf("%d\n",get_ans());
else add(w[i]),printf("%d\n",get_ans());
}
// dasdasd

Codeforces round 1098的更多相关文章

  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 #370 - #379 (Div. 2)

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

  9. Codeforces Round #371 (Div. 1)

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

随机推荐

  1. 【代码笔记】Web-HTML-链接

    一,效果图. 二,代码. <!DOCTYPE html> <html> <head> <meta charset="utf-8"> ...

  2. maven 技巧

    M2Eclipse Releases maven eclipse插件最新安装地址 Full Version Tag 1.0 2011-06-22 http://download.eclipse.org ...

  3. 微信小程序测试二三事

    微信小程序虽是微信推出的新形态的产品,但是在测试思路上跟其他的传统测试,大相径庭.既然大相径庭,那我们该如何测试呢. 功能测试功能测试跟传统的web功能测试一样,不是app的功能测试哦.这是因为小程序 ...

  4. Linux 为linux enterprises 6安装图形桌面教程

    为linux enterprises 6安装图形桌面教程 by:授客 QQ:1033553122 安装系统后发现没图形界面,安装Xwindow[为了避免权限不足,以root登录] 步骤1.启动图形界面 ...

  5. loadrunner 运行场景-场景运行原理

    运行场景-场景运行原理 by:授客 QQ:1033553122 运行原理 1 Remote Agent Dispatcher(Process) 运行Controller在负载机上开启应用程序. 2  ...

  6. 给你一个全自动的屏幕适配方案(基于SW方案)!—— 解放你和UI的双手

    Calces系列相关文章:Calces自动实现Android组件化模块构建 前言 屏幕适配一直是移动端开发热议的问题,但是适配方案往往在实际开发的时候会和UI提供的设计稿冲突.本文主要是基于官方推荐的 ...

  7. NoHttp封装--02 自定义请求

    bean实体类请求: 1.bean import java.io.Serializable; import com.alibaba.fastjson.annotation.JSONField; pub ...

  8. genymotion 模拟器内安装软件 the app contains ARM native code and your devices cannot run ARM instructions

    问题如图: 解决方法: 下载一个Genymotion-ARM-Translation软件,安装到模拟器中就好了

  9. django母版页的使用

    母版页用于处理html页面相同部分内容,避免在不同的页面中重复出现 1.添加母版页 再manage.py文件相同目录下添加templates文件夹用于保存母版页html文件 2.添加母版页Base.h ...

  10. python socket 套接字编程 单进程服务器 实现多客户端访问

    服务器: import socket #单进程服务器 实现多客户端访问 IO复用 #吧所有的客户端套接字 放在一个列表里面,一次又一次的便利过滤 server = socket.socket(sock ...