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 ...
随机推荐
- python webdriver api-右键另存下载文件
右键另存下载文件 先编辑SciTE脚本: ;ControlFocus("title","text",controlID) ;表示将焦点切换到标题为title窗体 ...
- Linux基础命令---bunzip2
bunzip2 解压缩bzip2压缩过的文件. 此命令的适用范围:RedHat.RHEL.Ubuntu.CentOS.SUSE.openSUSE.Fedora. 1.语法 bunzip2 ...
- Js基础知识5-函数返回值、函数参数、函数属性、函数方法
函数返回值 所有函数都有返回值,没有return语句时,默认返回内容为undefined,和其他面向对象的编程语言一样,return语句不会阻止finally子句的执行. function testF ...
- python+requests接口自动化测试
转自https://my.oschina.net/u/3041656/blog/820023 原来的web页面功能测试转变成接口测试,之前大多都是手工进行,利用postman和jmeter进行的接口测 ...
- Struts2 Spring Hibernate 框架整合 Annotation MavenProject
项目结构目录 pom.xml 添加和管理jar包 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns ...
- python序列化数据
在python中序列化数据可以使用两种不同模块,一种是json格式,另一种是pickle模块! 序列化的概念: 序列化:将对象的状态信息转换为可以存储或可以通过网络传输的过程,传输的格式可以是JSON ...
- P2503 [HAOI2006]均分数据
P2503 [HAOI2006]均分数据 模拟退火+dp (不得不说,我今天欧气爆棚) 随机出1个数列,然后跑一遍dp统计 #include<iostream> #include<c ...
- amin例子的简单研究
amin这个例子,使用了比较复杂高阶的qml技巧,但是也有局限性.下面分3个部分,分别是界面部分,算法部分和扩展部分,简单地对这个问题进行理解. 由衷感谢:http://amin-ahm ...
- 20145206邹京儒《网络对抗》逆向及Bof基础实践
20145206邹京儒<网络对抗>逆向及Bof基础实践 1 逆向及Bof基础实践说明 1.1 实践目标 本次实践的对象是一个名为pwn1的linux可执行文件. 该程序正常执行流程是:ma ...
- luogu4473 BZOJ2143 2011[国家集训队]飞飞侠
题目戳这里 有问题可以在博客@ 应该还会有人来看吧,嘻嘻 正题: 题目大意: 题目很清楚,就是一个点有一定的范围,会有一定的花费 求三个点中的任意两个点到另一个点的最小花费 (麻麻教育我千万读好题目( ...