# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1085426 | vjudge1 | Job Scheduling (CEOI12_jobs) | C++14 | 305 ms | 34640 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>
using namespace std;
long long n,m,d;
const long long MAX=1e5+10;
const long long MMAX=1e6+10;
pair<long long,long long> niza[MMAX];
vector<long long> v[MAX];
bool can(long long x)
{
if(x<=0)return false;
if(x>=m)return true;
long long i=0;
for(long long day=1; day<=n; day++)
{
long long cnt=0;
while(i<m)
{
if(niza[i].first+d<day)return false;
else if(niza[i].first>day)break;
cnt++;
i++;
if(cnt==x)break;
}
}
if(i>=m)return true;
return false;
}
int main()
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |