# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
898411 | hadi7 | Job Scheduling (CEOI12_jobs) | C++17 | 382 ms | 24652 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define FAST ios::sync_with_stdio(0); cin.tie(0)
#define f first
#define s second
using namespace std ;
const int N = 2e6 ;
main()
{
int n , k , m ;
cin >> n >> k >> m ;
vector <pair <int , int>> p(m) ;
vector <int> mp(N) ;
for(int i = 0 ; i < m ; i++)
{
cin >> p[i].f ;
p[i].s = i + 1 ;
mp[p[i].f]++ ;
}
sort(p.begin() , p.end()) ;
int mx = *max_element(mp.begin() , mp.end()) ;
int l = 0 , r = 1e18 ;
while(l + 1 < r)
{
int h = l + (r - l) / 2 ;
if(ceil(mx / h) <= k && ceil(m / h) <= n)
r = h ;
else
l = h ;
}
int z = 0 ;
for(int i = 0 ; i < m ;)
{
for(int j = 0 ; j < r && i < m ; j++ , i++)
{
cout << p[i].s << " " ;
}
cout << 0 << endl ;
z++ ;
}
for(; z < n ; z++)
cout << 0 << endl ;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |