首页 > 其他分享 >CF547D Mike and Fish

CF547D Mike and Fish

时间:2022-11-02 22:55:29浏览次数:42  
标签:Mike ch void CF547D cnt template inline Fish getchar

将一个点 \((x,y)\) 定义为 \(x\) 向 \(y\) 连的一条无向边,将问题转化为求欧拉路径,这样入度减出度必然 \(\leq 1\),这样还是不太好做,再转化一步,将每个点向一个虚拟点连一条边,那么我们就可以发现这样做只需要跑一个欧拉回路即可,因为度数为奇数的点也即欧拉路径的起点和终点一定是偶数个。
代码实现如下

#include<bits/stdc++.h>
#define RG register
#define LL long long
#define U(x, y, z) for(RG int x = y; x <= z; ++x)
#define D(x, y, z) for(RG int x = y; x >= z; --x)
using namespace std;
template <typename T> void read(T &n){ bool f = 1; char ch = getchar(); n = 0; for (; !isdigit(ch); ch = getchar()) if (ch == '-') f = 0; for (; isdigit(ch); ch = getchar()) n = (n << 1) + (n << 3) + (ch ^ 48); if (f == 0) n = -n;}
inline char Getchar(){ char ch; for (ch = getchar(); !isalpha(ch); ch = getchar()); return ch;}
template <typename T> inline void write(T n){ char ch[60]; bool f = 1; int cnt = 0; if (n < 0) f = 0, n = -n; do{ch[++cnt] = char(n % 10 + 48); n /= 10; }while(n); if (f == 0) putchar('-'); for (; cnt; cnt--) putchar(ch[cnt]);}
template <typename T> inline void writeln(T n){write(n); putchar('\n');}
template <typename T> inline void writesp(T n){write(n); putchar(' ');}
template <typename T> inline void chkmin(T &x, T y){x = x < y ? x : y;}
template <typename T> inline void chkmax(T &x, T y){x = x > y ? x : y;}
template <typename T> inline T Min(T x, T y){return x < y ? x : y;}
template <typename T> inline T Max(T x, T y){return x > y ? x : y;}
inline void readstr(string &s) { s = ""; static char c = getchar(); while (isspace(c)) c = getchar(); while (!isspace(c)) s = s + c, c = getchar();}
inline void FO(string s){freopen((s + ".in").c_str(), "r", stdin); freopen((s + ".out").c_str(), "w", stdout);}

const int N = 4e5 + 10;
int n;
int head[N], cnt = 1, flg[N << 1], ans[N], deg[N], tag;
struct edge{
	int id, v, nxt;
}e[N << 1];

inline void aedge(int id, int u, int v) {
	e[++cnt] = (edge) {id, v, head[u]}; head[u] = cnt;
}

inline void dfs(int u) {
	for (int &i = head[u]; i; i = e[i].nxt) {
		if (flg[i]) continue ;
		flg[i] = flg[i ^ 1] = 1;
		ans[e[i].id] = tag;
		tag ^= 1;
		dfs(e[i].v);
		
	}
}

int main(){
	//FO("");
	read(n);
	U(i, 1, n) {
		int u, v;
		read(u), read(v);
		v += 2e5;
		deg[u]++, deg[v]++;
		aedge(i, u, v), aedge(i, v, u);
	}

	U(i, 1, N - 10) if (deg[i] & 1) aedge(0, i, 0), aedge(0, 0, i);
	U(i, 0, N - 10) dfs(i);
	U(i, 1, n) if (ans[i]) putchar('b'); else putchar('r');
	return 0;
}

标签:Mike,ch,void,CF547D,cnt,template,inline,Fish,getchar
From: https://www.cnblogs.com/SouthernWay/p/16852857.html

相关文章

  • [abc274F] Fishing 题解
    比较有趣的用点思维的题。在学校和DYS一起推出来的题,庆祝AT复活写个题解。感觉用无序列表列出自己思绪的过程很简洁扼要,但是行文节奏过快。介于我想重现自己今天上午......
  • 敏捷(SCRUM)学习笔记 1 —— 《SCRUM敏捷软件开发》 (美)Mike Cohn)著 清华大学出版社2
     关键词:《SCRUM敏捷软件开发》——(美)MikeCohn著,清华大学出版社2011版,读书笔记(一) 第一章  为什么敏捷转型难(但值得) 为什么转型困难一、变化来得比以往更快......
  • D. Mike and distribution 首先学习了一个玄学的东西
    ​​http://codeforces.com/contest/798/problem/D​​D.MikeanddistributiontimelimitpertestmemorylimitpertestinputoutputMikehasalwaysbeenthinkingabou......
  • Ubuntu 22.04 LTS 代号已经公布:那就是 Jammy Jellyfish
    Ubuntu22.04LTS代号已在Ubuntu开发之家Launchpad上公布。在字母系列中的字母“I”之后,是“J”。因此,Canonical的下一个大LTS版本代号应该在其代号中包含字母“......
  • 超微Redfish API架构
    什么是RedfishRedfish由DMTF组织制定的一个开源的硬件管理标准提供RESTfulAPI来获取信息以及对服务器/存储/网络带外(OOB)管理使用简单的http来get信息如获取BIOS信息......
  • CF 547D. Mike and Fish 题解
    Solution1二分图染色显然这题是构造染色方案,于是我们考虑将矩阵转化成图进行染色。结论:将同一行的点两两配对,将同一列的点两两配对,形成的一定是二分图。证明:由于每......
  • 线性判别分析(fisher)
    线性判别分析线性判别分析中有降维,把数据都投影到同一条线上,然后在直线上取一个阈值,将直线分成两条射线,每一条代表一个分类。会损失一些数据信息,但如果这些信息是一些干扰......
  • 谈谈笔者是怎么拿到HFish社区活动仅有的500京东E卡
    前言早在2022年5月18日的时候,由于HFish官方文档的nginx配置文件问题,官方文档的nginx配置存在多处错误。在HFish的社区群里为群友解答如何使用nginx进行反向代理以及提供能......
  • CF1121B Mike and Children 题解
    题意翻译十分简洁,我说几点需要注意的。最多能选几个数?这是错的,要给出最多选出几对数。现在我们就珂以开始了。我的做法理论时间复杂度是 O(n^3)O(n3) 的暴力,但是因......
  • Fisher Information Matrix when Changing Variables
    CopiedfromthislinkFornormal\(X\simN(\mu,\sigma^2)\),informationmatrixis\[\mathcal{I}_1=\left(\begin{matrix}\frac{1}{\sigma^2}&0\\0&\frac{1......