제출 #726782

#제출 시각아이디문제언어결과실행 시간메모리
726782penguin133Job Scheduling (CEOI12_jobs)C++17
0 / 100
79 ms4340 KiB
#include <bits/stdc++.h> using namespace std; #define int long long #define pi pair<int, int> #define pii pair<int, pi> #define fi first #define se second #ifdef _WIN32 #define getchar_unlocked _getchar_nolock #endif mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); int n, d, m; int A[500005]; void solve(){ cin >> n >> d >> m; for(int i=1;i<=m;i++)cin >> A[i]; sort(A+1, A+m+1); int lo = 0, hi = m, ans = m; while(lo <= hi){ int mid = (lo + hi) >> 1; int in = 1; deque <int> dq; bool f = 1; for(int i=1;i<=n;i++){ while(in <= m && A[in] == i)dq.push_back(A[in++]); for(int j=1;j<=mid;j++){ if(dq.empty())break; dq.pop_front(); } if(!dq.empty() && dq.front() + d >= i)f = 0; } if(f)ans = mid, hi = mid - 1; else lo = mid + 1; } cout << ans; } main(){ ios::sync_with_stdio(0);cin.tie(0); int tc = 1; //cin >> tc; for(int tc1=1;tc1<=tc;tc1++){ // cout << "Case #" << tc1 << ": "; solve(); } }

컴파일 시 표준 에러 (stderr) 메시지

jobs.cpp:41:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   41 | main(){
      | ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...