-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlg1459.cpp
53 lines (47 loc) · 1.26 KB
/
lg1459.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false);
int n;
cin >> n;
vector<int> a(n);
vector<int> cnt(3);
for (int i=0; i<n; ++i) {
cin >> a[i];
--a[i];
++cnt[a[i]];
}
int ans = 0;
for (int i=0; i<n; ++i)
if (i<cnt[0]) {
if (a[i]!=0) {
bool found = false;
++ans;
if (a[i]==1)
for (int j=cnt[0]; j<cnt[1]+cnt[0]; ++j)
if (a[j]==0) {
swap(a[i], a[j]);
found = true; break;
}
if (!found)
for (int j=cnt[1]+cnt[0]; j<n; ++j)
if (a[j]==0) {
swap(a[i], a[j]);
break;
}
}
} else if (i<cnt[1]+cnt[0]) {
if (a[i]!=1) {
++ans;
for (int j=cnt[1]+cnt[0]; j<n; ++j)
if (a[j]==1) {
swap(a[i], a[j]);
break;
}
}
}
cout << ans << endl;
return 0;
}