贪心+bfs 或者 并查集 Codeforces Round #268 (Div. 2) D
http://codeforces.com/contest/469/problem/D
题目大意:
给你一个长度为n数组,给你两个集合A、B,再给你两个数字a和b。A集合中的每一个数字x都也能在a集合中找到x-a的数字。同理,b集合也一样。问,这个数组能否分成这两个集合?(然后坑点就是集合里面的元素可以为空)
思路一:
首先定义type函数,-1表示不在任何集合内,0表示A集合内,1表示B集合,2表示该元素是a的一半。(之所以要表示成2的原因是因为这个数值很特殊,a-x=x,所以他可以满足A集合,但是同时也可能存在ty=-1的数值y,他的b-y=x,所以这个时候集合是可以发生改变的)
我们先暴力枚举并且二分找一下满足条件数组A里面的元素。再找一下数组B里面的元素,且在找这个数组B的时候不能修改A中集合中的元素(即ty=0)。
然后我们暴力发现还存在ty=-1的数值,那么他肯定不满足属于A集合,因此可能是属于B集合的,所以我们对该元素进行bfs一下就好了。
复杂度O(n)
//看看会不会爆int!数组会不会少了一维!
//取物问题一定要小心先手胜利的条件
#include <bits/stdc++.h>
using namespace std;
#pragma comment(linker,"/STACK:102400000,102400000")
#define LL long long
#define ALL(a) a.begin(), a.end()
#define pb push_back
#define mk make_pair
#define fi first
#define se second
#define haha printf("haha\n")
const int maxn = 1e5 + ;
int p[maxn], ans[maxn], ty[maxn];
map<int, int> id;
int a, b, n; ///a type is 0,b is 1, 2 is suit for a
void bfs(int w){
queue<int> que;
que.push(w);
while (!que.empty()){
int pos = que.front(); que.pop();
int bval = b - p[pos];
int mypos = lower_bound(p, p + n, bval) - p;
if (p[mypos] == bval) {
if (ty[mypos] != ) {
int aval = a - p[mypos];
int sonpos = lower_bound(p, p + n, aval) - p;
if (p[sonpos] != aval) continue;
if (ty[sonpos] != ){
que.push(sonpos);
ty[sonpos] = -;
}
}
else continue;
ty[mypos] = ty[pos] = ;
}
}
} bool solve(){
if (p[n] >= a && p[n] >= b) return false;
///集合在a里面
for (int i = ; i < n; i++){
if (p[i] >= a) break;
if (ty[i] == ) continue;
if (p[i] * == a) {
ty[i] = ; continue;
}
int val = a - p[i];
int pos = lower_bound(p, p + n, val) - p;
if (pos >= n || p[pos] != val) continue;
if (ty[pos] == -){
ty[pos] = , ty[i] = ;
}
}
///集合在b里面
for (int i = ; i < n; i++){
if (p[i] >= b) break;
if (ty[i] == || ty[i] == ) continue;
if (p[i] * == b && ty[i] == -){
ty[i] = ; continue;
}
int val = b - p[i];
int pos = lower_bound(p, p + n, val) - p;
if (pos >= n || p[pos] != val || ty[pos] == ) continue;
if (ty[pos] == - || ty[pos] == ){
ty[pos] = , ty[i] = ;
}
}
for (int i = ; i < n; i++)
if (ty[i] == -) bfs(i);
for (int i = ; i < n; i++){
if (ty[i] == -) return false;
if (ty[i] == ) ty[i] = ;
}
return true;
} int main(){
int cnt = ;
cin >> n >> a >> b;
for (int i = ; i < n; i++){
scanf("%d", p + i);
id[p[i]] = cnt++;
}
sort(p, p + n);
memset(ty, -, sizeof(ty));
bool flag = solve();
if (flag){
puts("YES");
for (int i = ; i < n; i++){
int myid = id[p[i]];
ans[myid] = ty[i];
}
for (int i = ; i < n; i++){
printf("%d ", ans[i]);
}
cout << endl;
}
else puts("NO");
return ;
}
思路二:
当然,这题还可以用并查集来分配
假定,如果存在x,在数列中不存在a-x的数字,那么他一定属于集合B,同理,存在x,在数列中不存在b-x的数字,那么他一定属于集合A。然后我们只要利用这个条件,然后用并查集维护一下就好了。
这个的话可以看这个人的代码:链接在此
贪心+bfs 或者 并查集 Codeforces Round #268 (Div. 2) D的更多相关文章
- DFS/并查集 Codeforces Round #286 (Div. 2) B - Mr. Kitayuta's Colorful Graph
题目传送门 /* 题意:两点之间有不同颜色的线连通,问两点间单一颜色连通的路径有几条 DFS:暴力每个颜色,以u走到v为结束标志,累加条数 注意:无向图 */ #include <cstdio& ...
- 01背包dp+并查集 Codeforces Round #383 (Div. 2)
http://codeforces.com/contest/742/problem/D 题目大意:有n个人,每个人有重量wi和魅力值bi.然后又有m对朋友关系,朋友关系是传递的,如果a和b是朋友,b和 ...
- Codeforces Round #268 (Div. 2) ABCD
CF469 Codeforces Round #268 (Div. 2) http://codeforces.com/contest/469 开学了,时间少,水题就不写题解了,不水的题也不写这么详细了 ...
- Codeforces Round #268 (Div. 2) (被屠记)
c被fst了................ 然后掉到600+.... 然后...估计得绿名了.. sad A.I Wanna Be the Guy 题意:让你判断1-n个数哪个数没有出现.. sb题 ...
- Codeforces Round #268 (Div. 2) D. Two Sets [stl - set + 暴力]
8161957 2014-10-10 06:12:37 njczy2010 D - Two Sets GNU C++ A ...
- Codeforces Round #268 (Div. 1) B. Two Sets 暴力
B. Two Sets Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/468/problem/B ...
- Codeforces Round #268 (Div. 1) A. 24 Game 构造
A. 24 Game Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/468/problem/A D ...
- Codeforces Round #268 (Div. 2)
补题解: E:只会第四种解法:也只看懂了这一种. PS:F[X+10^18]=F[X]+1;F[X]表示X的数字之和; 假设X,F[10^18+X]+F[10^18+X-1]+......F[10^1 ...
- Codeforces Round #268 (Div. 1) 468D Tree(杜教题+树的重心+线段树+set)
题目大意 给出一棵树,边上有权值,要求给出一个1到n的排列p,使得sigma d(i, pi)最大,且p的字典序尽量小. d(u, v)为树上两点u和v的距离 题解:一开始没看出来p需要每个数都不同, ...
随机推荐
- android 知识点
版本更新 数据库Relam 图片加载库 视频bilibili 幻灯片 网络请求框架 内存检测工具 内存优化总结 压缩包下载并且解压 新闻资讯导航 联系人 滑动退出activity mvp框架 加载进度 ...
- HDU2124 Repair the Wall(贪心)
Problem Description Long time ago , Kitty lived in a small village. The air was fresh and the scener ...
- 转换成maven时报错
转自:将项目加入maven管理时报错 将项目加入maven管理时报错: Convert to maven project: An internal error occurred during: “En ...
- hdu_5883_The Best Path(欧拉路)
题目链接:hdu_5883_The Best Path 题意: n 个点 m 条无向边的图,找一个欧拉通路/回路使得这个路径所有结点的异或值最大. 题解: 节点 i 的贡献为((du[i] +1/ 2 ...
- 测试word 2013发布blog
测试图片和各种格式 使用Windows Live Writer 2012和Office Word 2013 发布文章到博客园全面总结 (亲测可用) 我的一些感受: 缺点 (1) Word201 ...
- CodeForces 697B Barnicle 模拟
强行模拟 纪念一下…… #include<stdio.h> #include<iostream> #include<algorithm> #include<m ...
- There was a problem parsing the package(android)
android phone when you install the application there will inevitably be "a problem parsing the ...
- mysql数据库的优化技术
表的设计合理化(遵从3NF)<3范式> 1NF:表的列具有原子性,不可再分解(列的信息不能分解,只要是关系型的数据库就自动满足1NF) 2NF:表中的记录是唯一的,就满足2NF(通常我们设 ...
- docker私服
1.下载私服镜像docker pull registry 2.启动容器docker run -d -p 5000:5000 -v /opt/data/registry:/var/lib/registr ...
- 对SNS网站现状和未来的一些想法——以我对人人网的体验为例
现在对人人网越来越没有兴趣了,上面的照片.状态也越来越少了,反而是朋友圈里大家比较活跃. 我觉得在网上发内容的,至少是希望得到大家关注的,可是为什么人人越来越被大家嫌弃了呢? 人人上的消息越来越被淹没 ...