blob: c304ed4b2890bfe4943120c90775deac60eb558e (
plain)
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
|
#include <algorithm>
#include <iostream>
#include <map>
#include <ranges>
#include <set>
#include <sstream>
#include <string>
#include <string_view>
#include <vector>
using namespace std;
int main() {
vector<long long> a;
vector<pair<int, int>> freesp, file;
char c;
for (int id = 0; cin >> c; id++) {
if (id % 2 == 1)
freesp.push_back(make_pair(a.size(), c-'0'));
else
file.push_back(make_pair(a.size(), c-'0'));
for (int j = 0; j < c-'0'; j++)
a.push_back(id % 2 == 0 ? id/2 : -1); // -1 = space
}
for (auto& p : file | views::reverse) {
for (auto& f : freesp) {
if (f.first >= p.first) break;
if (f.second >= p.second) {
for (int k = 0; k < p.second; k++) {
a[f.first+k] = a[p.first+k];
a[p.first+k] = -2;
}
f.first += p.second;
f.second -= p.second;
break;
}
}
}
long long checksum = 0;
for (long long i = 0; i < (long long)a.size(); i++)
if (a[i] >= 0)
checksum += i*a[i];
cout << checksum << endl;
return 0;
}
|