# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
743260 | NintsiChkhaidze | Job Scheduling (CEOI12_jobs) | C++17 | 495 ms | 26144 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 ll long long
#define s second
#define pb push_back
#define f first
using namespace std;
const int N = 1e5 + 5;
pair <int,int> a[1000005];
vector <int> v[N],ans[N];
int n,m,d;
bool check(int x){
int l = 1;
for (int i = 1; i <= n; i++){
v[i].clear();
while (l <= m && a[l].f <= i && i - a[l].f <= d && v[i].size() < x){
v[i].pb(a[l].s);
++l;
}
}
if (l != m + 1) return 0;
for (int i = 1; i <= n; i++){
ans[i] = v[i];
}
return 1;
}
signed main (){
ios_base::sync_with_stdio(0),cin.tie(NULL),cout.tie(NULL);
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |