2024 day 5
This commit is contained in:
parent
8a9b42d18b
commit
0fabff92b8
47
2024/5/main-1.cpp
Normal file
47
2024/5/main-1.cpp
Normal file
|
@ -0,0 +1,47 @@
|
|||
#include <bits/stdc++.h>
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
ios::sync_with_stdio(0);
|
||||
cin.tie(0);
|
||||
|
||||
map<int, set<int>> order;
|
||||
|
||||
string line;
|
||||
while (getline(cin, line) && !line.empty()) {
|
||||
istringstream l(line);
|
||||
int a, b;
|
||||
l >> a;
|
||||
l.ignore();
|
||||
l >> b;
|
||||
if (!order.contains(a)) {
|
||||
set<int> x;
|
||||
order[a] = x;
|
||||
}
|
||||
order[a].insert(b);
|
||||
}
|
||||
|
||||
int ret = 0;
|
||||
while (getline(cin, line) && !line.empty()) {
|
||||
istringstream l(line);
|
||||
int x;
|
||||
vector<int> elems;
|
||||
while (l >> x) {
|
||||
elems.push_back(x);
|
||||
l.ignore();
|
||||
}
|
||||
for (int i = 0; i < elems.size(); i++) {
|
||||
if (order.contains(elems[i])) {
|
||||
for (int j = 0; j < i; j++) {
|
||||
if (order[elems[i]].contains(elems[j])) {
|
||||
goto next;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
ret += elems[elems.size() / 2];
|
||||
next:;
|
||||
}
|
||||
|
||||
cout << ret << '\n';
|
||||
}
|
57
2024/5/main-2.cpp
Normal file
57
2024/5/main-2.cpp
Normal file
|
@ -0,0 +1,57 @@
|
|||
#include <bits/stdc++.h>
|
||||
using namespace std;
|
||||
|
||||
map<int, set<int>> order;
|
||||
|
||||
bool ordered(vector<int>& elems) {
|
||||
for (int i = 0; i < elems.size(); i++) {
|
||||
if (order.contains(elems[i])) {
|
||||
for (int j = 0; j < i; j++) {
|
||||
if (order[elems[i]].contains(elems[j])) {
|
||||
int x = elems[i];
|
||||
elems[i] = elems[j];
|
||||
elems[j] = x;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
int main() {
|
||||
ios::sync_with_stdio(0);
|
||||
cin.tie(0);
|
||||
|
||||
string line;
|
||||
while (getline(cin, line) && !line.empty()) {
|
||||
istringstream l(line);
|
||||
int a, b;
|
||||
l >> a;
|
||||
l.ignore();
|
||||
l >> b;
|
||||
if (!order.contains(a)) {
|
||||
set<int> x;
|
||||
order[a] = x;
|
||||
}
|
||||
order[a].insert(b);
|
||||
}
|
||||
|
||||
int ret = 0;
|
||||
while (getline(cin, line) && !line.empty()) {
|
||||
istringstream l(line);
|
||||
int x;
|
||||
vector<int> elems;
|
||||
while (l >> x) {
|
||||
elems.push_back(x);
|
||||
l.ignore();
|
||||
}
|
||||
if (ordered(elems)) {
|
||||
continue;
|
||||
}
|
||||
while (!ordered(elems));
|
||||
ret += elems[elems.size() / 2];
|
||||
}
|
||||
|
||||
cout << ret << '\n';
|
||||
}
|
Loading…
Reference in a new issue