Codeforces Round #576 (Div. 1) 简要题解 (CDEF)
1198 C Matching vs Independent Set
大意: 给定$3n$个点的无向图, 求构造$n$条边的匹配, 或$n$个点的独立集.
假设已经构造出$x$条边的匹配, 那么剩余$3n-2x$个点, 若$x<n$, 则$3n-2x\ge n$可以构造出独立集.
#include <iostream>
#include <sstream>
#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'
#define DB(a) ({REP(__i,1,n) cout<<a[__i]<<' ';hr;})
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
const int P = 1e9+, INF = 0x3f3f3f3f;
ll gcd(ll a,ll b) {return b?gcd(b,a%b):a;}
ll qpow(ll a,ll n) {ll r=%P;for (a%=P;n;a=a*a%P,n>>=)if(n&)r=r*a%P;return r;}
ll inv(ll x){return x<=?:inv(P%x)*(P-P/x)%P;}
inline int rd() {int x=;char p=getchar();while(p<''||p>'')p=getchar();while(p>=''&&p<='')x=x*+p-'',p=getchar();return x;}
//head const int N = 1e6+;
int u[N], v[N], a[N], vis[N]; void work() {
int n, m;
scanf("%d%d", &n, &m);
int cnt = ;
REP(i,,*n) vis[i] = ;
REP(i,,m) {
scanf("%d%d", u+i, v+i);
if (!vis[u[i]]&&!vis[v[i]]&&cnt<n) {
a[i]=vis[u[i]]=vis[v[i]]=;
++cnt;
}
else a[i] = ;
}
if (cnt==n) {
puts("Matching");
REP(i,,m) if (a[i]) printf("%d ",i);
}
else {
puts("IndSet");
cnt = ;
REP(i,,*n) if (!vis[i]) {
printf("%d ",i);
if (++cnt==n) break;
}
}
puts("");
} int main() {
int t;
scanf("%d", &t);
while (t--) work();
}
1198 D Rectangle Painting 1
大意: 给定$n^2$棋盘, 每个格子黑或白, 每次操作选择一个$w\times h$的矩形染成白色, 花费为$max(w,h)$, 求最少花费使得棋盘全白.
范围很小, 直接暴力区间$dp$吧.
#include <iostream>
#include <sstream>
#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'
#define DB(a) ({REP(__i,1,n) cout<<a[__i]<<' ';hr;})
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
const int P = 1e9+, INF = 0x3f3f3f3f;
ll gcd(ll a,ll b) {return b?gcd(b,a%b):a;}
ll qpow(ll a,ll n) {ll r=%P;for (a%=P;n;a=a*a%P,n>>=)if(n&)r=r*a%P;return r;}
ll inv(ll x){return x<=?:inv(P%x)*(P-P/x)%P;}
inline int rd() {int x=;char p=getchar();while(p<''||p>'')p=getchar();while(p>=''&&p<='')x=x*+p-'',p=getchar();return x;}
//head const int N = ;
int n;
char s[N];
int sum[N][N], dp[N][N][N][N]; int get(int a, int b, int c, int d) {
--a,--b;
return sum[c][d]-sum[a][d]-sum[c][b]+sum[a][b];
}
void chkmin(int &x, int y) {x>y?x=y:;}
int main() {
scanf("%d", &n);
REP(i,,n) {
scanf("%s", s+);
REP(j,,n) sum[i][j]=sum[i-][j]+sum[i][j-]-sum[i-][j-]+(s[j]=='#');
}
REP(j,,n) PER(i,,j) REP(b,,n) PER(a,,b) if (get(i,a,j,b)) {
int &r = dp[i][a][j][b] = max(b-a+,j-i+);
REP(x,a,b-) {
chkmin(r,dp[i][a][j][x]+dp[i][x+][j][b]);
}
REP(x,i,j-) {
chkmin(r,dp[i][a][x][b]+dp[x+][a][j][b]);
}
}
printf("%d\n",dp[][][n][n]);
}
1198 E Rectangle Painting 2
大意: $1198D$的花费改为$min(w,h)$.
因为花费是取$min$, 那么相当于每次可以选一行或一列染成白色, 所以可以离散化以后转化为二分图最小带权覆盖问题. 可以参考poj2226
#include <iostream>
#include <sstream>
#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'
#define DB(a) ({REP(__i,1,n) cout<<a[__i]<<' ';hr;})
using namespace std; const int N = 1e6+, S = N-, T = N-, INF = 0x3f3f3f3f;
int n, m;
int vx[N], vy[N];
struct {int x1,y1,x2,y2;} a[N];
struct edge {
int to,w,next;
edge(int to=,int w=,int next=):to(to),w(w),next(next){}
} e[N];
int head[N], dep[N], vis[N], cur[N], cnt=;
queue<int> Q;
int bfs() {
REP(i,,*vx+*vy) dep[i]=INF,vis[i]=,cur[i]=head[i];
dep[S]=INF,vis[S]=,cur[S]=head[S];
dep[T]=INF,vis[T]=,cur[T]=head[T];
dep[S]=,Q.push(S);
while (Q.size()) {
int u = Q.front(); Q.pop();
for (int i=head[u]; i; i=e[i].next) {
if (dep[e[i].to]>dep[u]+&&e[i].w) {
dep[e[i].to]=dep[u]+;
Q.push(e[i].to);
}
}
}
return dep[T]!=INF;
}
int dfs(int x, int w) {
if (x==T) return w;
int used = ;
for (int i=cur[x]; i; i=e[i].next) {
cur[x] = i;
if (dep[e[i].to]==dep[x]+&&e[i].w) {
int f = dfs(e[i].to,min(w-used,e[i].w));
if (f) used+=f,e[i].w-=f,e[i^].w+=f;
if (used==w) break;
}
}
return used;
}
int dinic() {
int ans = ;
while (bfs()) ans+=dfs(S,INF);
return ans;
}
void add(int u, int v, int w) {
e[++cnt] = edge(v,w,head[u]);
head[u] = cnt;
e[++cnt] = edge(u,,head[v]);
head[v] = cnt;
} int main() {
int n, m;
scanf("%d%d", &n, &m);
if (!m) return puts(""),;
REP(i,,m) {
scanf("%d%d%d%d", &a[i].x1, &a[i].y1, &a[i].x2, &a[i].y2);
vx[++*vx] = a[i].x1;
vx[++*vx] = ++a[i].x2;
vy[++*vy] = a[i].y1;
vy[++*vy] = ++a[i].y2;
}
sort(vx+,vx++*vx);
sort(vy+,vy++*vy);
*vx = unique(vx+,vx++*vx)-vx-;
*vy = unique(vy+,vy++*vy)-vy-;
REP(i,,m) {
a[i].x1 = lower_bound(vx+,vx++*vx,a[i].x1)-vx;
a[i].x2 = lower_bound(vx+,vx++*vx,a[i].x2)-vx-;
a[i].y1 = lower_bound(vy+,vy++*vy,a[i].y1)-vy;
a[i].y2 = lower_bound(vy+,vy++*vy,a[i].y2)-vy-;
REP(x,a[i].x1,a[i].x2) REP(y,a[i].y1,a[i].y2) {
add(x,y+*vx,INF);
}
}
REP(i,,*vx-) add(S,i,vx[i+]-vx[i]);
REP(i,,*vy-) add(*vx+i,T,vy[i+]-vy[i]);
printf("%d\n", dinic());
}
1198 F GCD Groups 2
大意: 给定$n$个数, 求划分为两个集合, 使得每个集合所有元素的$gcd$相同.
Codeforces Round #576 (Div. 1) 简要题解 (CDEF)的更多相关文章
- Codeforces Round #557 (Div. 1) 简要题解
Codeforces Round #557 (Div. 1) 简要题解 codeforces A. Hide and Seek 枚举起始位置\(a\),如果\(a\)未在序列中出现,则对答案有\(2\ ...
- Codeforces Round #545 (Div. 1) 简要题解
这里没有翻译 Codeforces Round #545 (Div. 1) T1 对于每行每列分别离散化,求出大于这个位置的数字的个数即可. # include <bits/stdc++.h&g ...
- Codeforces Round #483 (Div. 1) 简要题解
来自FallDream的博客,未经允许,请勿转载,谢谢. 为了证明一下我又来更新了,写一篇简要的题解吧. 这场比赛好像有点神奇,E题莫名是道原题,导致有很多选手直接过掉了(Claris 表演24s过题 ...
- Codeforces Round #498 (Div. 3) 简要题解
[比赛链接] https://codeforces.com/contest/1006 [题解] Problem A. Adjacent Replacements [算法] 将序列中的所有 ...
- Codeforces Round #535(div 3) 简要题解
Problem A. Two distinct points [题解] 显然 , 当l1不等于r2时 , (l1 , r2)是一组解 否则 , (l1 , l2)是一组合法的解 时间复杂度 : O(1 ...
- [题解][Codeforces]Codeforces Round #602 (Div. 1) 简要题解
orz djq_cpp lgm A 题意 给定一个分别含有 \(\frac n2\) 个左括号和右括号的括号序列 每次可以将序列的一个区间翻转 求一个不超过 \(n\) 次的操作方案,使得操作完之后的 ...
- Codeforces Round #398 (div.2)简要题解
这场cf时间特别好,周六下午,于是就打了打(谁叫我永远1800上不去div1) 比以前div2的题目更均衡了,没有太简单和太难的...好像B题难度高了很多,然后卡了很多人. 然后我最后做了四题,E题感 ...
- Codeforces Round #588 (Div. 1) 简要题解
1. 1229A Marcin and Training Camp 大意: 给定$n$个对$(a_i,b_i)$, 要求选出一个集合, 使得不存在一个元素好于集合中其他所有元素. 若$a_i$的二进制 ...
- # Codeforces Round #529(Div.3)个人题解
Codeforces Round #529(Div.3)个人题解 前言: 闲来无事补了前天的cf,想着最近刷题有点点怠惰,就直接一场cf一场cf的刷算了,以后的题解也都会以每场的形式写出来 A. Re ...
随机推荐
- gogs 实现webhook钩子(php接口形式)
1.概要流程 2.准备工作 gogs服务器 linux网站服务器(宝塔) 本地客户端 3.编写钩子访问的接口 在public下新建githook.php文件,代码如下: <?php $cmd = ...
- elementUI 列表里面含有多选框,当翻页的时候依然保持之前页多选不变
el-table的type="selection"的使用 场景:el-table,type="selection"时,重新请求后,设置列表更新前的已勾选项 踩坑 ...
- leetcode 384. Shuffle an Array
384. Shuffle an Array c++ random函数:https://www.jb51.net/article/124108.htm rand()不需要参数,它会返回一个从0到最大随机 ...
- vue---lodash的使用
Lodash就是这样的一套工具库,它内部封装了诸多对字符串.数组.对象等常见数据类型的处理函数,其中部分是目前ECMAScript尚未制订的规范,但同时被业界所认可的辅助函数.莫倩每天使用npm安装L ...
- 关于TCP粘包和拆包的终极解答
关于TCP粘包和拆包的终极解答 程序员行业有一些奇怪的错误的观点(误解),这些误解非常之流行,而且持有这些错误观点的人经常言之凿凿,打死也不相信自己有错,实在让人啼笑皆非.究其原因,还是因为这些错误观 ...
- windows下新增项目本地通过git bash推送至远程github
本地E盘workspace目录下新增了spring-cloud-alibaba-demo项目,还没有编译过,没有target等不需要推送至git的文件,所以就直接用git bash丢到github了. ...
- Vue学习笔记十三:Vue+Bootstrap+vue-resource从接口获取数据库数据
目录 前言 SpringBoot提供后端接口 Entity类 JPA操作接口 配置文件 数据库表自动映射,添加数据 写提供数据的接口 跨域问题 前端修改 效果图 待续 前言 Vue学习笔记九的列表案例 ...
- npm 全局安装路径 在哪里
注意:在Admin下,需要把隐藏文件显示出来,才能找到对应的文件路径.
- C#中 IEnumerable, ICollection, IList, List的使用
List是類,實現了IList接口,IList繼承了ICollection,ICollection繼承了IEnumerable,IEnumerable是其中最底層的接口. 實現IEnumerable接 ...
- [Google] 人和自行车匹配
2D平面上,有m个人(P),n辆自行车(B),还有空白(O)满足以下条件1.m < n. 2.不存在两个人,到同一辆自行车距离相等, 距离用abs(x1-x2) + abs(y1-y2)定义3. ...