0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-23 20:48:48 +00:00

#2. 整数数列的解码

https://sjzezoj.com/submission/22993
This commit is contained in:
Baoshuo Ren 2021-08-26 17:00:58 +08:00 committed by Baoshuo Ren
parent 92cfd7304e
commit 1db7d7b9e0
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

41
S2OJ/2/2.cpp Normal file
View File

@ -0,0 +1,41 @@
#include <bits/stdc++.h>
using namespace std;
int n, nxt[300005], pre[300005], a[300005], cnt;
vector<int> b[300005];
int main() {
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> a[i];
if (a[i] == -1) ++cnt;
}
for (int i = 1; i < cnt; i++) {
nxt[i] = i + 1;
}
nxt[cnt] = 1;
for (int i = 2; i <= cnt; i++) {
pre[i] = i - 1;
}
pre[1] = cnt;
int now = 1;
for (int i = 1; i <= n; i++) {
if (a[i] == -1) {
nxt[pre[now]] = nxt[now];
pre[nxt[now]] = pre[now];
} else {
b[now].push_back(a[i]);
}
now = nxt[now];
}
cout << cnt << endl;
for (int i = 1; i <= cnt; i++) {
cout << b[i].size() << ' ';
for (int j = 0; j < b[i].size(); ++j) {
cout << b[i][j] << ' ';
}
cout << endl;
}
return 0;
}