# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
954268 | Ariadna | Knapsack (NOI18_knapsack) | C++14 | 3 ms | 468 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define int long long
using namespace std;
vector<pair<int, int>> compression(int n, vector<int>& v, vector<int>& w, vector<int>& k) {
map<pair<int, int>, int> comp;
for (int i = 0; i < n; ++i) {
comp[{v[i], w[i]}] += k[i];
}
for (auto& x : comp) {
if (x.second >= 3) {
comp[{2 * x.first.first, 2*x.first.second}] += (x.second - 1) / 2;
if (x.second % 2) comp[x.first] = 1;
else comp[x.first] = 2;
}
}
vector<pair<int, int>> products;
for (auto& x : comp) {
products.pb(x.first);
if (x.second == 2) products.pb(x.first);
}
return products;
}
signed main() {
int s, n;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |