# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
202307 | quocnguyen1012 | Job Scheduling (CEOI12_jobs) | C++14 | 412 ms | 23672 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define fi first
#define se second
#define mp make_pair
#define pb push_back
using namespace std;
typedef long long ll;
const int maxn = 1e5 + 5;
int N, M, D;
vector<int> add[maxn];
vector<int> res[maxn];
bool check(int v)
{
deque<pair<int, int>> dq;
for (int i = 1; i <= N; ++i){
res[i].clear();
for (auto & x : add[i]){
dq.pb(mp(i, x));
}
if (dq.size()){
if (dq.front().fi + D < i) return false;
}
int sz = dq.size();
for (int j = 0; j < min((int)sz, v); ++j){
int x = dq.front().se;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |