Submission #81890

#TimeUsernameProblemLanguageResultExecution timeMemory
81890dualityJob Scheduling (CEOI12_jobs)C++11
100 / 100
222 ms14072 KiB
#define DEBUG 0 #include <bits/stdc++.h> using namespace std; #if DEBUG // basic debugging macros int __i__,__j__; #define printLine(l) for(__i__=0;__i__<l;__i__++){cout<<"-";}cout<<endl #define printLine2(l,c) for(__i__=0;__i__<l;__i__++){cout<<c;}cout<<endl #define printVar(n) cout<<#n<<": "<<n<<endl #define printArr(a,l) cout<<#a<<": ";for(__i__=0;__i__<l;__i__++){cout<<a[__i__]<<" ";}cout<<endl #define print2dArr(a,r,c) cout<<#a<<":\n";for(__i__=0;__i__<r;__i__++){for(__j__=0;__j__<c;__j__++){cout<<a[__i__][__j__]<<" ";}cout<<endl;} #define print2dArr2(a,r,c,l) cout<<#a<<":\n";for(__i__=0;__i__<r;__i__++){for(__j__=0;__j__<c;__j__++){cout<<setw(l)<<setfill(' ')<<a[__i__][__j__]<<" ";}cout<<endl;} // advanced debugging class // debug 1,2,'A',"test"; class _Debug { public: template<typename T> _Debug& operator,(T val) { cout << val << endl; return *this; } }; #define debug _Debug(), #else #define printLine(l) #define printLine2(l,c) #define printVar(n) #define printArr(a,l) #define print2dArr(a,r,c) #define print2dArr2(a,r,c,l) #define debug #endif // define #define MAX_VAL 999999999 #define MAX_VAL_2 999999999999999999LL #define EPS 1e-6 #define mp make_pair #define pb push_back // typedef typedef unsigned int UI; typedef long long int LLI; typedef unsigned long long int ULLI; typedef unsigned short int US; typedef pair<int,int> pii; typedef pair<LLI,LLI> plli; typedef vector<int> vi; typedef vector<LLI> vlli; typedef vector<pii> vpii; typedef vector<plli> vplli; // ---------- END OF TEMPLATE ---------- vi R[100000]; int p[100000]; int main() { int i; int N,D,M,x; scanf("%d %d %d",&N,&D,&M); for (i = 0; i < M; i++) scanf("%d",&x),R[x-1].pb(i); int j,l = 0,r = M; while (l < r) { int m = (l+r) / 2; j = 0; for (i = 0; i < N; i++) p[i] = R[i].size(); for (i = 0; i < N; i++) { while ((j <= i) && (p[j] == 0)) j++; if ((i-j) > D) break; int c = m; while ((j <= i) && (c > 0)) { int t = min(p[j],c); p[j] -= t,c -= t; if (p[j] == 0) j++; } } if (i == N) r = m; else l = m+1; } j = 0; printf("%d\n",l); for (i = 0; i < N; i++) { while ((j <= i) && R[j].empty()) j++; int c = l; while ((j <= i) && (c > 0)) { if (R[j].empty()) j++; else { printf("%d ",R[j].back()+1); R[j].pop_back(),c--; } } printf("0\n"); } return 0; }

Compilation message (stderr)

jobs.cpp: In function 'int main()':
jobs.cpp:63:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d %d %d",&N,&D,&M);
     ~~~~~^~~~~~~~~~~~~~~~~~~~~
jobs.cpp:64:43: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     for (i = 0; i < M; i++) scanf("%d",&x),R[x-1].pb(i);
                             ~~~~~~~~~~~~~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...