# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
661475 | yashsingh | Job Scheduling (CEOI12_jobs) | C++17 | 688 ms | 56916 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef int ll;
ll n, d, m;
bool sort2(pair<ll,ll>a,pair<ll,ll>b) {
return a.second < b.second;
}
bool val(ll machines, pair<ll,ll> a[]) {
map<ll,ll> ma;
ma.insert({0, machines});
pair<ll,ll> val;
for (ll i{0}; i < m; ++i) {
auto search = ma.upper_bound(a[i].first+d);
val = *prev(search);
if (search == ma.begin()) {
return 0;
} else {
prev(search)->second = val.second - 1;
if (val.second == 1) {
ma.erase(prev(search));
}
++ma[max(val.first, a[i].first)+1];
}
}
return 1;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |