# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
99882 | bharat2002 | Job Scheduling (CEOI12_jobs) | C++14 | 116 ms | 33792 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*input
8 2 12
1 2 4 2 1 3 5 6 2 3 6 4
*/
#include<bits/stdc++.h>
using namespace std;
const int N=1e6 + 100;
const int mod=1e9 + 7;
#define int long long
const int inf=1e18;
#define pii pair<int, int>
#define f first
#define s second
#define mp make_pair
pii arr[N];int n, m, d, oriarr[N];vector<int> days[N];
bool p(int x){
for(int i=1;i<=n;i++) days[i].clear();
int ptr=1;
for(int i=1;i<=n;i++)
{
while(ptr<=m&&arr[ptr].f<=i&&days[i].size()<x) days[i].push_back(arr[ptr++].s);
for(auto j:days[i])
{
if(i>=oriarr[j]&&i+d>=oriarr[j]) continue;return false;
}
}
if(ptr<=m) return false;
return true;
}
bool sf(pii a, pii b){
return a.f<b.f;
}
signed main()
{
ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
cin>>n>>d>>m;
for(int i=1;i<=m;i++)
{
cin>>arr[i].f;arr[i].s=i;oriarr[i]=arr[i].f;
}
sort(arr+1, arr+m+1, sf);
int low=1, high=m;
/* cout<<n<<endl<<endl;
if(p(2))
{
cout<<"YS\n";
}
for(int i=1;i<=n;i++)
{
for(auto j:days[i]) cout<<"{"<<j<<" "<<oriarr[j]<<"} ";cout<<endl;
}*/
while(low<high)
{
int mid=(low+high)/2;
if(p(mid)) high=mid;
else low=mid+1;
}
p(low);
cout<<low<<endl;
for(int i=1;i<=n;i++)
{
for(auto j:days[i]) cout<<j<<" ";cout<<0<<endl;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |