# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1003354 | AtinaR | Job Scheduling (CEOI12_jobs) | C++14 | 264 ms | 34576 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;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
long long n,d,m;
cin>>n>>d>>m;
pair<long long,long long> niza[m];
for(long long i=0; i<m; i++)
{
cin>>niza[i].first;
niza[i].second=i+1;
}
sort(niza,niza+m);
long long b=0,e=m+1;
long long res=0;
while(b<=e)
{
long long mid=(b+e)/2;
long long cnt=0;
long long day=1;
long long og=0;
bool flag=true;
for(long long i=0; i<m; i++)
{
cnt++;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |