# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
168915 | abil | Gift (IZhO18_nicegift) | C++14 | 2044 ms | 79936 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fr first
#define sc second
#define pb push_back
#define mk make_pair
#define all(s) s.begin(),s.end()
#define int long long
using namespace std;
const int N = (1e6 + 12);
const int mod = (1e9 + 7);
const int INF = (0x3f3f3f3f);
int a[N];
set<pair<int,int > > s;
vector<pair<int,pair<int,int > > > vec;
main()
{
int n, k, sum = 0;
scanf("%lld%lld", &n, &k);
for(int i = 1;i <= n; i++){
scanf("%lld", &a[i]);
sum += a[i];
s.insert({a[i], i});
}
if(sum % k != 0){
cout << -1;
return 0;
}
while(!s.empty()){
pair<int,int > x, y;
x = *s.begin();
y = *s.rbegin();
s.erase(s.begin());
s.erase(--s.end());
vec.pb({x.fr, {x.sc, y.sc}});
if(y.fr - x.fr > 0){
s.insert({y.fr - x.fr, y.sc});
}
}
cout << vec.size() << endl;
for(auto to : vec){
cout << to.fr << " " << to.sc.fr << " " << to.sc.sc << endl;
}
}
컴파일 시 표준 에러 (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... |