QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#331540#1844. Cactussinsop90WA 118ms98260kbC++143.1kb2024-02-18 14:51:032024-02-18 14:51:04

Judging History

你现在查看的是最新测评结果

  • [2024-02-18 14:51:04]
  • 评测
  • 测评结果:WA
  • 用时:118ms
  • 内存:98260kb
  • [2024-02-18 14:51:03]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e6 + 5;
int n, m, dfn[maxn], low[maxn], S[maxn], top, cnt, head[maxn], tot, col, deg[maxn], vis[maxn], visn[maxn], vism[maxn], visq[maxn];
queue<int> Q;
struct edge {
	int v, pre;
}e[maxn << 1];
void add(int u, int v) {
	e[++ tot].v = v;
	e[tot].pre = head[u];
	head[u] = tot;
}
vector<int> belong[maxn], vecn, vec[maxn], VEC[maxn], ansn;
vector<pair<int, int>> ans;
void check(int x, int y) {
	VEC[x].push_back(y);
}
void tarjan(int now, int fa) {
	dfn[now] = low[now] = ++ cnt;
	S[++ top] = now;
	for(int i = head[now];i;i = e[i].pre) {
		int v = e[i].v;
		if(vis[v]) continue;
		if(!dfn[v]) {
			tarjan(v, now);
			low[now] = min(low[now], low[v]);
			if(low[v] >= dfn[now]) {
				++ col;
				belong[col].push_back(now);
				check(now, col);
				vec[col + n].push_back(now);
				while(1) {
					int t = S[top];
					check(t, col);
					belong[col].push_back(t);
					vec[col + n].push_back(t);
					top --;
					if(t == v) break;
				}
			}
		}
		else if(v != fa) low[now] = min(low[now], dfn[v]);
	}
}
void dfs2(int now, int ID, int fa) {
	vism[now] = 1;
	vecn.push_back(now);
	for(int i = head[now];i;i = e[i].pre) {
		int v = e[i].v;
		if(v == fa || vism[v] || !visq[v]) continue;
		dfs2(v, ID, now);
	}
}
void dfs(int now, int fa) {
	visn[now] = 1;
	for(int v : vec[now]) {
		if(v == fa) continue;
		dfs(v, now);
	}
	if(now <= n) return;
	vecn.clear();
	for(int v : vec[now]) {
		visq[v] = 1;
	}
	if(!fa) {
		for(int v : vec[now]) {
			fa = v;
			ansn.push_back(v);
			break;
			
		}
	}
	dfs2(fa, now, fa);
	for(int i = 1;i < vecn.size();i++) {
		ans.push_back(make_pair(1, (i & 1) ? vecn[i] : vecn[i] + n));
	}
	ans.push_back(make_pair(1, vecn[1] + n));
	if(vecn.size() & 1) ans.push_back(make_pair(1, vecn.back()));
	else ans.push_back(make_pair(1, vecn.back() + n));
	for(int v : vec[now]) vism[v] = visq[v] = 0;
}
int main() {
//	freopen("A.in", "r", stdin);
//	freopen("my.out", "w", stdout);
	ios::sync_with_stdio(0);
	cin.tie(0), cout.tie(0);
	cin >> n >> m;
	for(int i = 1, u, v;i <= m;i++) {
		cin >> u >> v;
		add(u, v), add(v, u);
		deg[u] ++, deg[v] ++;
	}
	for(int i = 1;i <= n;i++) if(deg[i] & 1) Q.push(i);
	while(!Q.empty()) {
		int t = Q.front();
		Q.pop();
		if(vis[t]) continue;
		if(deg[t] % 2 == 0) continue;
		ans.push_back(make_pair(1, t));
		vis[t] = 1;
		for(int i = head[t];i;i = e[i].pre) {
			int v = e[i].v;
			if(vis[v]) continue;
			deg[v] --;
			if(deg[v] & 1) Q.push(v);
		}
	}
	ans.push_back(make_pair(2, 0));
	for(int i = 1;i <= n;i++) {
		deg[i] = 0;
		if(vis[i]) continue;
		if(!dfn[i]) tarjan(i, 0);
	}
	for(int i = 1;i <= col;i++) {
		if(visn[i + n]) continue;
		dfs(i + n, 0);
	} 
	for(pair<int, int> t : ans) vism[t.second] = 1;
	for(int i = 1;i <= n;i++) if(vis[i]) ans.push_back(make_pair(1, i));
	for(int x : ansn) ans.push_back(make_pair(1, x));
	cout << 0 << " " << ans.size() << '\n';
	for(pair<int, int> t : ans) {
		if(t.first == 2) cout << 2 << '\n';
		else cout << t.first << " " << t.second << '\n';
	}
}

详细

Test #1:

score: 100
Accepted
time: 11ms
memory: 76008kb

input:

3 3
1 2
1 3
2 3

output:

0 6
2
1 3
1 5
1 6
1 2
1 1

result:

ok You are right!

Test #2:

score: 0
Accepted
time: 8ms
memory: 75952kb

input:

7 7
1 2
1 3
2 3
2 4
2 5
3 6
3 7

output:

0 14
1 4
1 5
1 6
1 7
2
1 3
1 9
1 10
1 2
1 4
1 5
1 6
1 7
1 1

result:

ok You are right!

Test #3:

score: -100
Wrong Answer
time: 118ms
memory: 98260kb

input:

300000 368742
1 143504
1 234282
2 91276
2 296320
3 274816
4 212293
4 258214
5 253489
5 295826
6 96521
6 252745
6 267103
6 269879
7 5293
7 295586
8 44304
8 57067
8 233291
9 190526
10 18682
11 7440
12 24695
12 172561
12 243692
12 280316
13 80152
13 268749
14 146394
14 207280
15 151280
15 226848
16 458...

output:

0 468694
1 3
1 8
1 9
1 10
1 11
1 16
1 20
1 21
1 25
1 28
1 29
1 30
1 32
1 33
1 34
1 41
1 42
1 43
1 44
1 47
1 48
1 53
1 54
1 55
1 57
1 59
1 62
1 65
1 73
1 75
1 77
1 80
1 81
1 87
1 88
1 94
1 95
1 101
1 102
1 103
1 106
1 112
1 123
1 128
1 129
1 133
1 136
1 137
1 138
1 140
1 141
1 143
1 145
1 146
1 150
1...

result:

wrong answer The deg of 212293 is not odd.