0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-09 16:18:49 +00:00

#2162. 「POI2011 R2 Day1」垃圾运输 Garbage

https://loj.ac/s/1582802
This commit is contained in:
Baoshuo Ren 2022-09-20 19:27:34 +08:00
parent e0e8d0ca8f
commit 34179a97a2
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
53 changed files with 247 additions and 0 deletions

91
LibreOJ/2162/2162.cpp Normal file
View File

@ -0,0 +1,91 @@
#include <iostream>
#include <stack>
#include <utility>
#include <vector>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 1e5 + 5,
M = 1e6 + 5;
int n, m, d[N], root;
bool vis[N], in_stack[N], edge_used[M];
std::stack<int> st;
std::vector<std::pair<int, int>> g[N];
std::vector<std::vector<int>> ans;
void dfs(int u) {
vis[u] = true;
for (auto e : g[u]) {
int v = e.first,
id = e.second;
if (edge_used[id]) continue;
edge_used[id] = true;
dfs(v);
}
if (in_stack[u]) {
std::vector<int> res{u};
while (st.top() != u) {
res.emplace_back(st.top());
in_stack[st.top()] = false;
st.pop();
}
res.emplace_back(u);
ans.emplace_back(res);
} else {
st.push(u);
in_stack[u] = true;
}
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> m;
for (int i = 1, a, b, s, t; i <= m; i++) {
cin >> a >> b >> s >> t;
if (s ^ t) {
g[a].emplace_back(b, i);
g[b].emplace_back(a, i);
d[a]++, d[b]++;
}
}
for (int i = 1; i <= n; i++) {
if (d[i] % 2 != 0) {
cout << "NIE" << endl;
exit(0);
}
}
for (int i = 1; i <= n; i++) {
if (!vis[i]) dfs(i);
}
cout << ans.size() << endl;
for (auto& item : ans) {
cout << item.size() - 1 << ' ';
for (int& x : item) {
cout << x << ' ';
}
cout << endl;
}
return 0;
}

BIN
LibreOJ/2162/data/checker.cpp (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi0.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi0.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi0a.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi0a.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi10a.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi10a.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi10b.ine (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi10b.oute (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi1ocen.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi1ocen.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi2ocen.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi2ocen.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi3a.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi3a.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi3b.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi3b.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi3ocen.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi3ocen.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi4a.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi4a.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi4b.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi4b.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi4ocen.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi4ocen.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi5a.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi5a.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi5b.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi5b.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi5ocen.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi5ocen.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi6a.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi6a.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi6b.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi6b.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi7a.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi7a.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi7b.ine (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi7b.oute (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi8a.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi8a.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi8b.ine (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi8b.oute (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi9a.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi9a.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi9b.ine (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/smi9b.oute (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/2162/data/spj_cpp.cpp (Stored with Git LFS) Normal file

Binary file not shown.