比赛 2025.3.18 评测结果 AAAEAAAAWE
题目名称 奇偶性游戏 最终得分 70
用户昵称 李奇文 运行时间 0.510 s
代码语言 C++ 内存使用 4.11 MiB
提交时间 2025-03-18 21:13:44
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
const int N=1e7;
int n,q;
int f[N],a[N];
int findf(int x){
	if(f[x]==0||f[x]==x)return f[x]=x;
	a[x]+=a[f[x]];a[x]=a[x]&1;
	f[x]=findf(f[x]);
	return findf(f[x]);
}
int main(){	
	freopen("parity.in","r",stdin);
	freopen("parity.out","w",stdout);
	std::cin>>n>>q;
	for(int i=1;i<=q;i++){
		int l,r,tb=1;string s;
		std::cin>>l>>r>>s;
		r++;
		if(s=="even") tb=0;
		int fl=findf(l),fr=findf(r);
		if(fl==fr){
			if(a[l]!=((a[r]+tb)&1)) std::cout<<i-1;
			else continue;
			return 0;
		}else{
			a[fr]=(a[r]!=tb),f[fr]=l;
		}
	}
	std::cout<<q;
	return 0;
}