| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 495289 | kingline | Gift (IZhO18_nicegift) | C++17 | 2080 ms | 1976 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define ios ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define all(data) data.begin() , data.end()
#define endl '\n'
//freopen("nenokku_easy.in", "r", stdin);
//freopen("nenokku_easy.out", "w", stdout);
#define int long long
#define pii pair < int, int >
using namespace std;
typedef long long ll;
const int N = 1e5 + 5;
int n, k, rel, a[N], b[N];
vector < pair < int, pii > > path;
void rec() {
bool ok = 1;
for(int i = 1; i <= n; i++) {
if(b[i] > a[i]) return;
if(b[i] < a[i]) ok = 0;
}
if(ok) {
cout << path.size() << endl;
for(int i = 0; i < path.size(); i++) {
cout << path[i].first << " " << path[i].second.first << " " << path[i].second.second << endl;
}
exit(0);
}
for(int i = 1; i <= n; i++) {
for(int j = i + 1; j <= n; j++) {
for(int w = rel; w > 0; w--) {
path.pb({w, {i, j}});
b[i] += w;
b[j] += w;
rec();
b[i] -= w;
b[j] -= w;
path.pop_back();
}
}
}
}
main() {
/*ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);*/
cin >> n >> k;
for(int i = 1; i <= n; i++) {
cin >> a[i];
rel = max(rel, a[i]);
}
rec();
cout << -1;
}
/*
5
2 8 5 1 10
5
2 3 5 3
2 5 3 3
1 4 4
2 3 4 2
1 1 2
*/
컴파일 시 표준 에러 (stderr) 메시지
| # | 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... | ||||
