传送门

分析:构造题。可以这么想:先把s,t两个点去掉,把剩下的点先并查集合并。这样会出现N+2个集合:s, t, N个剩余集合。那么N个集合中先把只能与s或t中一个相连的连起来,如果这样已经超出了要求,那么就不能构造。剩余的既能和s又能和t相连的集合就按照不超过ds,dt这两个要求相连,可以则Yes,否则为No。这样有一个特殊情况:就是s或者t可能只有一条边连向t和s,不知道有没有说清楚,就是对于s只有s−t或者对于t只有s−t。这个需要在最后进行特判。

代码:

/*****************************************************/
//#pragma comment(linker, "/STACK:1024000000,1024000000")
#include <map>
#include <set>
#include <ctime>
#include <stack>
#include <queue>
#include <cmath>
#include <string>
#include <vector>
#include <cstdio>
#include <cctype>
#include <cstring>
#include <sstream>
#include <cstdlib>
#include <iostream>
#include <algorithm>
using namespace std;
#define offcin ios::sync_with_stdio(false)
#define sigma_size 26
#define lson l,m,v<<1
#define rson m+1,r,v<<1|1
#define slch v<<1
#define srch v<<1|1
#define sgetmid int m = (l+r)>>1
#define LL long long
#define ull unsigned long long
#define mem(x,v) memset(x,v,sizeof(x))
#define lowbit(x) (x&-x)
#define bits(a) __builtin_popcount(a)
#define mk make_pair
#define pb push_back
#define fi first
#define se second const int INF = 0x3f3f3f3f;
const LL INFF = 1e18;
const double pi = acos(-1.0);
const double inf = 1e18;
const double eps = 1e-9;
const LL mod = 1e9+7;
const int maxmat = 10;
const ull BASE = 31; /*****************************************************/ typedef pair<int, int> pii;
const int maxn = 2e5 + 5;
int par[maxn];
int s, t, ds, dt;
bool inq[maxn];
int cons[maxn], cont[maxn];
std::vector<pii> vis;
std::vector<int> conn;
std::vector<int> G[maxn];
int N, M; void init() {
for (int i = 0; i <= N; i ++)
par[i] = i;
}
int findpar(int x) {
return par[x] = (par[x] == x ? x : findpar(par[x]));
}
void unite(int x, int y) {
int px = findpar(x), py = findpar(y);
if (px == py) return;
// cout<<x<<" "<<y<<endl;
vis.pb(mk(x, y));
par[px] = py;
}
bool work() {
init();
for (int u = 1; u <= N; u ++) {
if (u == s || u == t) continue;
for (unsigned i = 0; i < G[u].size(); i ++) {
int v = G[u][i];
if (v == s || v == t) continue;
unite(u, v);
}
}
mem(inq, false);
for (int u = 1; u <= N; u ++) {
if (u == s || u == t) continue;
int p = findpar(u);
if (!inq[p]) {
conn.pb(p);
inq[p] = true;
}
}
mem(cons, -1); mem(cont, -1);
bool st = false;
for (unsigned i = 0; i < G[s].size(); i ++) {
int v = G[s][i];
if (v == t) {st = true; continue;}
int p = findpar(v);
cons[p] = v;
}
for (unsigned i = 0; i < G[t].size(); i ++) {
int v = G[t][i];
if (v == s) {st = true; continue;}
int p = findpar(v);
cont[p] = v;
}
int anss = 0, anst = 0;
for (unsigned i = 0; i < conn.size(); i ++) {
int p = conn[i];
if (cons[p] != -1 && cont[p] != -1) continue;
if (cons[p] == -1 && cont[p] == -1) return false;
if (cons[p] != -1 && cont[p] == -1) {
unite(s, cons[p]);
anss ++;
}
if (cons[p] == -1 && cont[p] != -1) {
unite(t, cont[p]);
anst ++;
}
}
if (anss >= ds || anst >= dt) return false;
ds -= anss, dt -= anst;
bool flag = true;
for (unsigned i = 0; i < conn.size(); i ++) {
int p = conn[i];
if (!(cons[p] != -1 && cont[p] != -1)) continue;
if (flag) {
ds --, dt --;
unite(s, cons[p]);
unite(t, cont[p]);
flag = false;
}
else {
if (ds) {
ds --;
unite(s, cons[p]);
}
else if (dt) {
dt --;
unite(t, cont[p]);
}
else return false;
}
}
int ps = findpar(s), pt = findpar(t);
if (ps != pt) {
if (ds && dt && st) unite(s, t);
else return false;
}
return true;
} int main(int argc, char const *argv[]) {
cin>>N>>M;
for (int i = 0; i < M; i ++) {
int u, v; cin>>u>>v;
G[u].pb(v); G[v].pb(u);
}
cin>>s>>t>>ds>>dt;
if (work()) {
puts("Yes");
for (unsigned i = 0; i < vis.size(); i ++)
printf("%d %d\n", vis[i].fi, vis[i].se);
}
else puts("No");
return 0;
}

Codeforces Round #375 (Div. 2) F. st-Spanning Tree的更多相关文章

  1. Codeforces Round #375 (Div. 2) F. st-Spanning Tree 生成树

    F. st-Spanning Tree 题目连接: http://codeforces.com/contest/723/problem/F Description You are given an u ...

  2. Codeforces Round #486 (Div. 3) F. Rain and Umbrellas

    Codeforces Round #486 (Div. 3) F. Rain and Umbrellas 题目连接: http://codeforces.com/group/T0ITBvoeEx/co ...

  3. Codeforces Round #485 (Div. 2) F. AND Graph

    Codeforces Round #485 (Div. 2) F. AND Graph 题目连接: http://codeforces.com/contest/987/problem/F Descri ...

  4. Codeforces Round #501 (Div. 3) F. Bracket Substring

    题目链接 Codeforces Round #501 (Div. 3) F. Bracket Substring 题解 官方题解 http://codeforces.com/blog/entry/60 ...

  5. Codeforces Round #499 (Div. 1) F. Tree

    Codeforces Round #499 (Div. 1) F. Tree 题目链接 \(\rm CodeForces\):https://codeforces.com/contest/1010/p ...

  6. Codeforces Round #271 (Div. 2) F. Ant colony (RMQ or 线段树)

    题目链接:http://codeforces.com/contest/474/problem/F 题意简而言之就是问你区间l到r之间有多少个数能整除区间内除了这个数的其他的数,然后区间长度减去数的个数 ...

  7. Codeforces Round #538 (Div. 2) F 欧拉函数 + 区间修改线段树

    https://codeforces.com/contest/1114/problem/F 欧拉函数 + 区间更新线段树 题意 对一个序列(n<=4e5,a[i]<=300)两种操作: 1 ...

  8. Codeforces Round #524 (Div. 2) F. Katya and Segments Sets(主席树)

    https://codeforces.com/contest/1080/problem/F 题意 有k个区间,区间的种类有n种,有m个询问(n,m<=1e5,k<=3e5),每次询问a,b ...

  9. Codeforces Round #525 (Div. 2) F. Ehab and a weird weight formula

    F. Ehab and a weird weight formula 题目链接:https://codeforces.com/contest/1088/problem/F 题意: 给出一颗点有权值的树 ...

随机推荐

  1. set、def、lambda、内置函数、文件操作

    set : 无序,不重复,可以嵌套 .add (添加元素) .update(接收可迭代对象)---等于批量 添加 .diffrents()两个集合不同差 .sysmmetric difference( ...

  2. python字符串方法的简单使用

    学习python字符串方法的使用,对书中列举的每种方法都做一个试用,将结果记录,方便以后查询. (1) s.capitalize() ;功能:返回字符串的的副本,并将首字母大写.使用如下: >& ...

  3. Centos7搭建需要mysql的网站

    1.在centos7上安装好http.php.php-mysql服务 php-mysql是用来链接的工具 2.在centos5上yum安装mysql 注意在搭建本地yum源时把校验关闭,不然安装不上 ...

  4. js高级程序设计书中,有一句话在全局作用域中定义的函数实际上只 能被某个对象调用???

    js没有块级作用域(题外话:函数可以作为一个块级),所以我们经常使用闭包来模拟块级作用域,以避免变量或者函数因为名称相同而产生的冲突. 重点来了: 所以,如果我们把哪个变量或者函数放在全局作用域中,那 ...

  5. easyui validatebox 验证类型

    required: "必选字段",        remote: "请修正该字段",        email: "请输入正确格式的电子邮件" ...

  6. 20161011001 treeView 递归

    protected void FillTree()        {            H_data H_data = new H_data(); H_data.sql_text1 = " ...

  7. selenium启动Chrome浏览器和禁止证书错误提示弹出

    要把ChromeDriver放到代码中的文件夹中c://*******Application public static WebDriver WebDriverRun(WebDriver driver ...

  8. 如何在R语言中使用Logistic回归模型

    在日常学习或工作中经常会使用线性回归模型对某一事物进行预测,例如预测房价.身高.GDP.学生成绩等,发现这些被预测的变量都属于连续型变量.然而有些情况下,被预测变量可能是二元变量,即成功或失败.流失或 ...

  9. Python3基础 列表之间+ 合并,不去除重复项

    镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ ...

  10. Scrum Meeting 11-20151217

    任务安排 姓名 今日任务 明日任务 困难 董元财 网络连接框架优化 请假(数据库) 无 胡亚坤 优化商品搜索界面 请假(数据库) 无 刘猛 请假(参加编译测试) 无 马汉虎 请假(参加编译测试) 无 ...