# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
46743 |
2018-04-22T16:24:33 Z |
qoo2p5 |
Rope (JOI17_rope) |
C++14 |
|
31 ms |
33272 KB |
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF = (int) 1e9 + 1e6 + 123;
const ll LINF = (ll) 1e18 + 1e9 + 123;
#define rep(i, s, t) for (auto i = (s); i < (t); ++(i))
#define per(i, s, t) for (auto i = (s); i >= (t); --(i))
#define all(x) (x).begin(), (x).end()
#define sz(x) ((int)(x).size())
#define mp make_pair
#define pb push_back
bool mini(auto &x, const auto &y) {
if (y < x) {
x = y;
return 1;
}
return 0;
}
bool maxi(auto &x, const auto &y) {
if (y > x) {
x = y;
return 1;
}
return 0;
}
void run();
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
run();
return 0;
}
const int N = 1 << 20;
int n, m;
int a[N];
int tree[2 * N + 239];
int cnt_full[N + 239];
vector<int> match[N + 239];
void clr() {
memset(cnt_full, 0, sizeof cnt_full);
rep(i, 0, m) {
match[i].clear();
}
}
void add(int ind, int val) {
tree[N + ind] += val;
int i = (N + ind) / 2;
while (i > 0) {
tree[i] = max(tree[2 * i], tree[2 * i + 1]);
i /= 2;
}
}
int get(int i, int tl, int tr, int l, int r) {
if (tl >= r || tr <= l) {
return -INF;
}
if (l <= tl && tr <= r) {
return tree[i];
}
int tm = (tl + tr) / 2;
return max(get(2 * i, tl, tm, l, r), get(2 * i + 1, tm, tr, l, r));
}
int get(int l, int r) {
return get(1, 0, N, l, r + 1);
}
int ans[N];
void run() {
cin >> n >> m;
if (m == 1) {
cout << "0\n";
return;
}
rep(i, 0, n) {
cin >> a[i];
a[i]--;
}
rep(i, 0, m) {
ans[i] = INF;
}
int qq = 0;
rep(odd_l, 0, 2) {
rep(odd_r, 0, 2) {
if ((odd_l + odd_r) % 2 != n % 2) {
continue;
}
clr();
qq++;
for (int i = odd_l; i < n - odd_r; i += 2) {
if (a[i] != a[i + 1]) {
match[a[i]].pb(a[i + 1]);
match[a[i + 1]].pb(a[i]);
} else {
cnt_full[a[i]]++;
}
}
rep(i, 0, m) {
tree[N + i] = sz(match[i]) + 2 * cnt_full[i] + (odd_l && a[0] == i) + (odd_r && a[n - 1] == i);
}
per(i, N - 1, 1) {
tree[i] = max(tree[2 * i + 1], tree[2 * i + 2]);
}
rep(i, 0, m) {
int bonus = (odd_l && a[0] == i) + (odd_r && a[n - 1] == i);
int we = bonus + cnt_full[i] * 2;
int simple = 0;
for (int j : match[i]) {
add(j, -1);
we++;
simple++;
}
int other = max(get(0, i - 1), get(i + 1, m - 1));
assert(other >= 0);
if (other == 0) {
if (simple > 0) {
we--;
other++;
} else if (bonus > 0) {
we--;
other++;
} else {
//~ assert(false);
}
}
mini(ans[i], n - (we + other));
for (int j : match[i]) {
add(j, 1);
}
}
}
}
assert(qq <= 2);
rep(i, 0, m) {
cout << ans[i] << "\n";
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
30 ms |
33272 KB |
Output is correct |
2 |
Incorrect |
31 ms |
33272 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
30 ms |
33272 KB |
Output is correct |
2 |
Incorrect |
31 ms |
33272 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
30 ms |
33272 KB |
Output is correct |
2 |
Incorrect |
31 ms |
33272 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
30 ms |
33272 KB |
Output is correct |
2 |
Incorrect |
31 ms |
33272 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
30 ms |
33272 KB |
Output is correct |
2 |
Incorrect |
31 ms |
33272 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |