Codeforces Round #364 (Div. 1) (差一个后缀自动机)
B. Connecting Universities
大意: 给定树, 给定2*k个点, 求将2*k个点两两匹配, 每个匹配的贡献为两点的距离, 求贡献最大值
单独考虑每条边$(u,v)$的贡献即可, 最大贡献显然是左右两侧点的最小值.
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <math.h>
#include <set>
#include <map>
#include <queue>
#include <string>
#include <string.h>
#include <bitset>
#define REP(i,a,n) for(int i=a;i<=n;++i)
#define PER(i,a,n) for(int i=n;i>=a;--i)
#define hr putchar(10)
#define pb push_back
#define lc (o<<1)
#define rc (lc|1)
#define mid ((l+r)>>1)
#define ls lc,l,mid
#define rs rc,mid+1,r
#define x first
#define y second
#define io std::ios::sync_with_stdio(false)
#define endl '\n'
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
const int P = 1e9+7, INF = 0x3f3f3f3f;
ll gcd(ll a,ll b) {return b?gcd(b,a%b):a;}
ll qpow(ll a,ll n) {ll r=1%P;for (a%=P;n;a=a*a%P,n>>=1)if(n&1)r=r*a%P;return r;}
ll inv(ll x){return x<=1?1:inv(P%x)*(P-P/x)%P;}
//head const int N = 1e6+10;
int n, k;
int a[N], sz[N];
vector<int> g[N];
ll ans; void dfs(int x, int fa) {
sz[x] = a[x];
for (int y:g[x]) if (y!=fa) {
dfs(y,x), sz[x]+=sz[y];
ans += min(sz[y], k-sz[y]);
}
} int main() {
scanf("%d%d", &n, &k),k*=2;
REP(i,1,k) {
int t;
scanf("%d", &t);
a[t] = 1;
}
REP(i,2,n) {
int u, v;
scanf("%d%d", &u, &v);
g[u].pb(v),g[v].pb(u);
}
dfs(1,0);
printf("%lld\n", ans);
}
C. Break Up
大意: 无向有权图有重边自环, 求删除两条边使得s与t不连通, 且两条边的边权和最小.
先求出任意一条最短路径, 边数显然不超过$n$, 暴力枚举这$n$条边然后再tarjan即可, 复杂度O(n(m+n))
算是挺简单的了, 还是打了好久, 一直卡在怎么判断删除一条边后是否连通, 后来发现tarjan后从s->t经过的桥一定是一条链, 所以直接dfs就好了, 最后还要注意边权1e9+1e9爆掉0x3f3f3f3f了.
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <math.h>
#include <set>
#include <map>
#include <queue>
#include <string>
#include <string.h>
#include <bitset>
#define REP(i,a,n) for(int i=a;i<=n;++i)
#define PER(i,a,n) for(int i=n;i>=a;--i)
#define hr putchar(10)
#define pb push_back
#define lc (o<<1)
#define rc (lc|1)
#define mid ((l+r)>>1)
#define ls lc,l,mid
#define rs rc,mid+1,r
#define x first
#define y second
#define io std::ios::sync_with_stdio(false)
#define endl '\n'
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
const int P = 1e9+7, INF = ~0u>>1;
ll gcd(ll a,ll b) {return b?gcd(b,a%b):a;}
ll qpow(ll a,ll n) {ll r=1%P;for (a%=P;n;a=a*a%P,n>>=1)if(n&1)r=r*a%P;return r;}
ll inv(ll x){return x<=1?1:inv(P%x)*(P-P/x)%P;}
//head const int N = 3e4+10;
int n, m, S, T;
int w[N];
struct _ {int to,id;} fa[N];
vector<_> g[N];
int dfn[N], low[N], isbridge[N], clk;
void tarjan(int x, int fa, int z) {
dfn[x]=low[x]=++clk;
for (auto &&e:g[x]) if (e.id!=z) {
int y = e.to, id = e.id;
if (!dfn[y]) {
tarjan(y,id,z);
low[x]=min(low[x],low[y]);
if (low[e.to]>dfn[x]) isbridge[id]=1;
} else if (dfn[y]<dfn[x]&&id!=fa) {
low[x]=min(low[x],dfn[y]);
}
}
}
int vis[N], c[N];
int dfs(int x) {
if (x==T) return 1;
for (auto e:g[x]) if (!vis[e.id]) {
vis[e.id] = 1;
if (dfs(e.to)) return c[e.id] = 1;
}
return 0;
} int main() {
scanf("%d%d%d%d", &n, &m, &S, &T);
REP(i,1,m) {
int u, v;
scanf("%d%d%d", &u, &v, w+i);
g[u].pb({v,i}), g[v].pb({u,i});
}
queue<int> q;
fa[S].to=-1, q.push(S);
while (q.size()) {
int x = q.front(); q.pop();
for (auto &&e:g[x]) if (!fa[e.to].to) {
fa[e.to]={x,e.id}, q.push(e.to);
}
}
if (!fa[T].to) return puts("0\n0"),0;
int ans = INF;
vector<int> vec;
for (int x=T; x!=S; x=fa[x].to) {
int id = fa[x].id;
memset(vis,0,sizeof vis);
memset(c,0,sizeof c);
vis[id] = 1;
if (!dfs(S)) {
if (ans>w[id]) ans = w[id],vec.clear(),vec.pb(id);
continue;
}
memset(dfn,0,sizeof dfn);
memset(isbridge,0,sizeof isbridge);
clk = 0;
tarjan(S,0,id);
REP(i,1,m) if (c[i]&&isbridge[i]&&ans>w[id]+w[i]) {
ans=w[id]+w[i];
vec.clear();
vec.pb(id), vec.pb(i);
}
}
if (ans==INF) return puts("-1"),0;
printf("%d\n%d\n", ans, int(vec.size()));
for (int t:vec) printf("%d ", t); hr;
}
D. Huffman Coding on Segment
莫队一下, 然后将出现次数小于等于$\sqrt{n}$的暴力合, 其余的用堆合, 复杂度$O(m\sqrt{n}logn)$, 看了下最优解, 好像可以排序一下省去堆从而优化掉一个log
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <math.h>
#include <set>
#include <map>
#include <queue>
#include <string>
#include <string.h>
#include <bitset>
#define REP(i,a,n) for(int i=a;i<=n;++i)
#define PER(i,a,n) for(int i=n;i>=a;--i)
#define hr putchar(10)
#define pb push_back
#define lc (o<<1)
#define rc (lc|1)
#define mid ((l+r)>>1)
#define ls lc,l,mid
#define rs rc,mid+1,r
#define x first
#define y second
#define io std::ios::sync_with_stdio(false)
#define endl '\n'
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
const int P = 1e9+7, INF = 0x3f3f3f3f;
ll gcd(ll a,ll b) {return b?gcd(b,a%b):a;}
ll qpow(ll a,ll n) {ll r=1%P;for (a%=P;n;a=a*a%P,n>>=1)if(n&1)r=r*a%P;return r;}
ll inv(ll x){return x<=1?1:inv(P%x)*(P-P/x)%P;}
//head #ifdef ONLINE_JUDGE
const int N = 1e6+10;
#else
const int N = 111;
#endif int n, m, sqn;
int blo[N], cnt[N], sum[N], s[N], a[N];
struct _ {
int l,r,id;
bool operator < (const _ & rhs) const {
return blo[l]^blo[rhs.l]?l<rhs.l:blo[l]&1?r<rhs.r:r>rhs.r;
}
} e[N];
ll ans[N];
vector<int> q; void upd(int x, int d) {
--sum[cnt[x]];
cnt[x]+=d;
++sum[cnt[x]];
} ll calc() {
ll ans = 0;
REP(i,1,sqn) s[i] = sum[i];
priority_queue<int,vector<int>,greater<int> > Q;
int pre = 0;
REP(i,1,sqn) if (s[i]) {
if (pre) {
int x = pre+i;
ans += x;
if (x>sqn) Q.push(x);
else ++s[x];
--s[i], pre = 0;
}
if (s[i]&1) --s[i], pre = i;
ans += s[i]*i;
if (i*2<=sqn) s[i*2]+=s[i]/2;
else {
REP(j,1,s[i]/2) Q.push(i*2);
}
}
if (pre) Q.push(pre);
for (auto i:q) if (cnt[i]>sqn) Q.push(cnt[i]);
while (Q.size()>1) {
int x = Q.top(); Q.pop();
x += Q.top(); Q.pop();
ans += x, Q.push(x);
}
return ans;
} int main() {
scanf("%d", &n), sqn = sqrt(n);
REP(i,1,n) scanf("%d",a+i),++cnt[a[i]],blo[i]=i/sqn;
REP(i,1,N-1) if (cnt[i]>sqn) q.pb(i);
memset(cnt,0,sizeof cnt);
scanf("%d", &m);
REP(i,1,m) scanf("%d%d",&e[i].l,&e[i].r),e[i].id=i;
sort(e+1,e+1+m);
int ql=1,qr=0;
REP(i,1,m) {
while (ql<e[i].l) upd(a[ql++],-1);
while (qr>e[i].r) upd(a[qr--],-1);
while (ql>e[i].l) upd(a[--ql],1);
while (qr<e[i].r) upd(a[++qr],1);
ans[e[i].id]=calc();
}
REP(i,1,m) printf("%lld\n", ans[i]);
}
E. Cool Slogans
后缀自动机还没学, 以后补了
Codeforces Round #364 (Div. 1) (差一个后缀自动机)的更多相关文章
- Codeforces Round #244 (Div. 2)D (后缀自己主动机)
Codeforces Round #244 (Div. 2)D (后缀自己主动机) (标号为0的节点一定是null节点,不管怎样都不能拿来用,切记切记,以后不能再错了) 这题用后缀自己主动机的话,对后 ...
- Codeforces Round #572 (Div. 1) 差E
Codeforces Round #572 (Div. 1) A2 题意:给一棵树,带边权,互不相同且为偶数.每次操作是选两个叶子然后在路径上同时加一个数.初始边权全是0,求一个操作序列使得最终边权与 ...
- Codeforces Round #573 (Div. 1) 差F
Codeforces Round #573 (Div. 1) E 题意:二维平面上有 n 个点,你可以放至多 m 条直线使得 (0,0) 与每个点的连线至少与一条直线相交.求原点与所有直线的距离最小值 ...
- Codeforces Round #364 (Div. 2)
这场是午夜场,发现学长们都睡了,改主意不打了,第二天起来打的virtual contest. A题 http://codeforces.com/problemset/problem/701/A 巨水无 ...
- Codeforces Round #364 (Div. 2)->A. Cards
A. Cards time limit per test 1 second memory limit per test 256 megabytes input standard input outpu ...
- Codeforces Round #364 (Div.2) C:They Are Everywhere(双指针/尺取法)
题目链接: http://codeforces.com/contest/701/problem/C 题意: 给出一个长度为n的字符串,要我们找出最小的子字符串包含所有的不同字符. 分析: 1.尺取法, ...
- Codeforces Round #364 (Div. 2) Cells Not Under Attack
Cells Not Under Attack 题意: 给出n*n的地图,有给你m个坐标,是棋子,一个棋子可以把一行一列都攻击到,在根据下面的图,就可以看出让你求阴影(即没有被攻击)的方块个数 题解: ...
- Codeforces Round #364 (Div.2) D:As Fast As Possible(模拟+推公式)
题目链接:http://codeforces.com/contest/701/problem/D 题意: 给出n个学生和能载k个学生的车,速度分别为v1,v2,需要走一段旅程长为l,每个学生只能搭一次 ...
- Codeforces Round #364 (Div. 2) D. As Fast As Possible
D. As Fast As Possible time limit per test 1 second memory limit per test 256 megabytes input stand ...
随机推荐
- Java设计模式应用——过滤器模式
storm引擎计算出一批中间告警结果,会发送一条kafka消息给告警入库服务,告警入库服务接收到kafka消息后读取中间告警文件,经过一系列处理后把最终告警存入mysql中. 实际上,中间告警结果可能 ...
- 通过canal实现把MySQL数据实时增量到kafka
说明:我们有一个业务需要把mysql中一些表实时同步到大数据集群hbase上面,我们先通过sqoop把表中数据全量导入到hbase中,然后再通过canal定位的某个binlog的position,来实 ...
- IO(字节流)
1. 字节流类以InputStream 和 OutputStream为顶层类,他们都是抽象类(abstract) 2. 最重要的两种方法是read()和write(),它们分别对数据的字节进行读写.两 ...
- web前端----css补充
css常用的一些属性: 1.去掉下划线 :text-decoration:none ;2.加上下划线: text-decoration: underline; 3.调整文本和图片的位置(也就是设置元素 ...
- 计算概论(A)/基础编程练习2(8题)/3:计算三角形面积
#include<stdio.h> #include<math.h> int main() { // 声明三角形的三个顶点坐标和面积 float x1, y1, x2, y2, ...
- P1771 方程的解_NOI导刊2010提高(01)
P1771 方程的解_NOI导刊2010提高(01) 按题意用快速幂把$g(x)$求出来 发现这不就是个组合数入门题吗! $k$个人分$g(x)$个苹果,每人最少分$1$个,有几种方法? 根据插板法, ...
- dba和运维专家们说有丰富的大型分布式系统架构设计经验纯属扯淡
如果,一开始就从事dba和运维的专家们说他们有丰富的大型分布式系统架构设计经验,那纯属扯淡.除非,他们从是从开发专家或者架构师转型而来,那么他们才有资格说自己有丰富的大型分布式系统架构设计经验. 运维 ...
- sublime3 离线安装插件
直接去:https://packagecontrol.io/installation搜索插件,插件一般会有个git网址(格式化html的插件可以用这个:https://github.com/victo ...
- python常见模块属性与方法
sys模块的变量 变量 描述 sys.path 模块搜索路径 path[0] 是当前脚本程序的路径名,否则为 '' sys.modules 已加载模块的字典 sys.version 版本信息字符串 s ...
- JQuery使用教程
jQuery简介 jQuery由美国人John Resig创建,至今已吸引了来自世界各地的众多 javascript高手加入其team jQuery是对原生JavaScript二次封装的工具函数集合 ...