欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

cf547D. Mike and Fish(欧拉回路)

程序员文章站 2022-07-02 15:52:14
题意 "题目链接" Sol 说实话这题我到现在都不知道咋A的。 考试的时候是对任意相邻点之间连边,然后一分没有 然后改成每两个之间连一条边就A了。。 按说是可以过掉任意坐标上的点都是偶数的数据啊。。 cpp include include include include include includ ......

题意

题目链接

sol

说实话这题我到现在都不知道咋a的。

考试的时候是对任意相邻点之间连边,然后一分没有

然后改成每两个之间连一条边就a了。。

按说是可以过掉任意坐标上的点都是偶数的数据啊。。

#include<cstdio>
#include<algorithm>
#include<iostream>
#include<vector>
#include<cstring>
#include<queue>
#define pair pair<int, int>
#define mp(x, y) make_pair(x, y)
#define fi first
#define se second 
using namespace std;
const int maxn = 2e5 + 10, inf = 1e9 + 10, mod = 998244353;
inline int read() {
    char c = getchar(); int x = 0, f = 1;
    while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();}
    while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
    return x * f;
}
int n;
int x[maxn], y[maxn], date[maxn], numx[maxn], numy[maxn];
vector<int> e[maxn];
vector<pair> tmp[maxn];
void get(int *a) {
    for(int i = 1; i <= n; i++) date[i] = a[i];
    sort(date + 1, date + n + 1);
    int num = unique(date + 1, date + n + 1) - date - 1;
    for(int i = 0; i <= num; i++) tmp[i].clear();
    for(int i = 1; i <= n; i++) a[i] = lower_bound(date + 1, date + num + 1, a[i]) - date - 1, tmp[a[i]].push_back(mp(a[i], i));
    for(int i = 0; i <= num; i++) {
        if(tmp[i].size() < 2) continue;
        sort(tmp[i].begin(), tmp[i].end());
        for(int j = 0; j < tmp[i].size() - 1; j += 2) {
            int x = tmp[i][j].se, y = tmp[i][j + 1].se;
            e[x].push_back(y);
            e[y].push_back(x);
        }
    }
}
int vis[maxn], vis2[maxn];
void bfs(int k) {
    queue<int> q;
    vis[k] = 1; q.push(k); 
    while(!q.empty()) {
        int p = q.front(); q.pop(); 
        if(vis2[p]) continue; vis2[p] = 1;
        for(int i = 0; i < e[p].size(); i++) {
            int to = e[p][i];
            vis[to] = vis[p] ^ 1;
            q.push(to);
        }
    }
    
}
int main() {
    n = read();
    for(int i = 1; i <= n; i++) x[i] = read(), y[i] = read();
    get(x); get(y);
    for(int i = 1; i <= n; i++) if(!vis2[i]) bfs(i);
    for(int i = 1; i <= n; i++) putchar(vis[i] == 0 ? 'b' : 'r');
    return 0;
}