Submission #1113988

#TimeUsernameProblemLanguageResultExecution timeMemory
1113988ezzzayJob Scheduling (CEOI12_jobs)C++14
0 / 100
391 ms16808 KiB
#include<bits/stdc++.h> using namespace std; #define itn long long #define ff first #define ss second #define int long long #define pb push_back vector<pair<int,int>>v; int n,d,m; bool check(int mid){ int j=0; for(int i=1;i<=n;i++){ int p=mid; while(j<m and p>0){ if(v[j].ff > i+d)break; j++; p--; } } return j==m; } signed main(){ cin>>n>>d>>m; for(int i=1;i<=m;i++){ int x; cin>>x; v.pb({x,i}); } sort(v.begin(),v.end()); int lo=0,hi=1e16; while(hi>=lo){ int mid=(hi+lo)/2; bool u=check(mid); if(u){ hi=mid-1; } else{ lo=mid+1; } } cout<<lo-1<<endl; for(int i=1;i<=n;i++)cout<<0<<endl; } /* 8 2 12 1 2 4 2 1 3 5 6 2 3 6 4 */
#Verdict Execution timeMemoryGrader output
Fetching results...