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) (差一个后缀自动机)的更多相关文章

  1. Codeforces Round #244 (Div. 2)D (后缀自己主动机)

    Codeforces Round #244 (Div. 2)D (后缀自己主动机) (标号为0的节点一定是null节点,不管怎样都不能拿来用,切记切记,以后不能再错了) 这题用后缀自己主动机的话,对后 ...

  2. Codeforces Round #572 (Div. 1) 差E

    Codeforces Round #572 (Div. 1) A2 题意:给一棵树,带边权,互不相同且为偶数.每次操作是选两个叶子然后在路径上同时加一个数.初始边权全是0,求一个操作序列使得最终边权与 ...

  3. Codeforces Round #573 (Div. 1) 差F

    Codeforces Round #573 (Div. 1) E 题意:二维平面上有 n 个点,你可以放至多 m 条直线使得 (0,0) 与每个点的连线至少与一条直线相交.求原点与所有直线的距离最小值 ...

  4. Codeforces Round #364 (Div. 2)

    这场是午夜场,发现学长们都睡了,改主意不打了,第二天起来打的virtual contest. A题 http://codeforces.com/problemset/problem/701/A 巨水无 ...

  5. 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 ...

  6. Codeforces Round #364 (Div.2) C:They Are Everywhere(双指针/尺取法)

    题目链接: http://codeforces.com/contest/701/problem/C 题意: 给出一个长度为n的字符串,要我们找出最小的子字符串包含所有的不同字符. 分析: 1.尺取法, ...

  7. Codeforces Round #364 (Div. 2) Cells Not Under Attack

    Cells Not Under Attack 题意: 给出n*n的地图,有给你m个坐标,是棋子,一个棋子可以把一行一列都攻击到,在根据下面的图,就可以看出让你求阴影(即没有被攻击)的方块个数 题解: ...

  8. Codeforces Round #364 (Div.2) D:As Fast As Possible(模拟+推公式)

    题目链接:http://codeforces.com/contest/701/problem/D 题意: 给出n个学生和能载k个学生的车,速度分别为v1,v2,需要走一段旅程长为l,每个学生只能搭一次 ...

  9. 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 ...

随机推荐

  1. 把HDFS上的数据导入到Hive中

    1. 首先下载测试数据,数据也可以创建 http://files.grouplens.org/datasets/movielens/ml-latest-small.zip 2. 数据类型与字段名称 m ...

  2. 左连接LEFT JOIN 连接自己时的查询结果测试

    #左连接LEFT JOIN 连接自己时的查询结果测试 #左连接LEFT JOIN 连接自己时的查询结果(都会出现两个重复字段),两个表都有as后只能查询相等条件merchant_shop_id非nul ...

  3. c++继承、多态以及与java的行为差异之处

    对于面向对象而言,多态是最有用的基本特性之一,相对于函数指针,易用得多.下面看下c++继承和多态行为的基本特性,最后说明下和java的基本差别. 首先定义父类和子类. base.h #pragma o ...

  4. 利用Python网络爬虫爬取学校官网十条标题

    利用Python网络爬虫爬取学校官网十条标题 案例代码: # __author : "J" # date : 2018-03-06 # 导入需要用到的库文件 import urll ...

  5. 20145312袁心《网络对抗》Web基础实践

    20145312袁心<网络对抗>Web基础实践 问题回答 1.什么是表单: 表单在网页中主要负责数据采集功能. 一个表单有三个基本组成部分: 表单标签:这里面包含了处理表单数据所用CGI程 ...

  6. 《将博客搬至51CTO》

    想把你的博客搬家到51CTO吗?想拥有一键式搬家的体验吗? 就算家大业大不好搬也没关系,我们帮你! 51CTO推出专业的搬家工具,用最短的时间.最快的速度,为你在这儿搭建一个温馨的家. 在这儿,你可以 ...

  7. HTML基本格式

    <html> <head> <title>放置文章标题</title> <meta http-equiv="Content-Type&q ...

  8. MBR记录

    mbr version: 1.6 boot code size: primary data size: extended data size: debug version: no bpb status ...

  9. poj3352 Road Construction & poj3177 Redundant Paths (边双连通分量)题解

    题意:有n个点,m条路,问你最少加几条边,让整个图变成边双连通分量. 思路:缩点后变成一颗树,最少加边 = (度为1的点 + 1)/ 2.3177有重边,如果出现重边,用并查集合并两个端点所在的缩点后 ...

  10. hdu4528 小明系列故事——捉迷藏(记录状态的BFS)题解

    思路: 一道BFS题,和以前的BFS有点不同,这里的vis数组需要记录每次走时的状态,所以开了3维,只对该状态下的vis修改. 注意坑点:S的位置是可以走的 代码: #include<queue ...