# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
844329 | vjudge1 | Pod starim krovovima (COCI20_psk) | C++14 | 1 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
using namespace std;
template<typename T1, typename T2> ostream& operator<<(ostream& os, pair<T1, T2> p){ return os << p.first << " " << p.second; }
void solve(void){
int x;
cin >> x;
vector<pair<int, int>> a(x);
vector<int> dolu(x), son(x,0);
int sum = 0;
for(int i=0; i<x; i++){
cin >> dolu[i];
sum += dolu[i];
cin >> a[i].first;
a[i].second = i;
}
sort(a.begin(), a.end(), [](pair<int,int> a, pair<int,int> b){ return a.first > b.first; } );
int ans = 0;
for(int i=0; i<x; i++){
if(a[i].first < sum){
sum -= a[i].first;
son[a[i].second] = a[i].first;
}else{
son[a[i].second] = sum;
sum -= sum;
ans += !son[a[i].second];
}
}
cout << ans << "\n";
for(auto gh: son)
cout << gh << " ";
cout << "\n";
}
signed main(){
int t=1;
// cin >> t;
while(t--)
solve();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |