Submission #1119450

#TimeUsernameProblemLanguageResultExecution timeMemory
1119450johuJob Scheduling (CEOI12_jobs)Java
0 / 100
463 ms65536 KiB
import java.io.*; import java.util.*; public class jobs { static final int MAXN = 100001; static int[] Cn = new int[MAXN]; static Deque<Integer>[] Req = new ArrayDeque[MAXN]; static int n, m, d; public static boolean test(int k) { int dd = 1, r = 0; for (int x = 1; x <= n; x++) { if (Cn[x] == 0) continue; if (dd < x - d) { dd = x - d; r = 0; } dd += (Cn[x] + r) / k; r = (Cn[x] + r) % k; if (dd > x + 1 || (dd == x + 1 && r > 0)) { return false; } } return true; } public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); n = Integer.parseInt(st.nextToken()); d = Integer.parseInt(st.nextToken()); m = Integer.parseInt(st.nextToken()); for (int x = 0; x <= n; x++) { Req[x] = new ArrayDeque<>(); Cn[x] = 0; } while (m-- > 0) { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } int a = Integer.parseInt(st.nextToken()) + d; Req[a].add(m + 1); Cn[a]++; } int left = 1, sol = 0, r = 0; for (int x = 1; x <= n; x++) { if (Cn[x] == 0) { if (r <= d) r++; } else { int bound = (Cn[x] + d) / (d + 1); if (bound > left) { left = bound; } int reduced = (Cn[x] + sol - 1) / sol; if (r * sol >= Cn[x]) { r -= reduced; r++; } else { sol += (Cn[x] - r * sol + d) / (d + 1); r = 1; } } } while (left < sol) { int mid = (left + sol) / 2; if (test(mid)) { sol = mid; } else { left = mid + 1; } } System.out.println(sol); StringBuilder output = new StringBuilder(); int dc = 1, dd = 1, x = 1; while (dd <= n) { if (Req[x].isEmpty()) { x++; while (x <= n && Req[x].isEmpty()) x++; if (x > n) break; } if (dd < x - d) { output.append("0\n"); dd++; dc = 1; } else { output.append(Req[x].pollFirst()).append(" "); if (++dc > sol) { dc = 1; dd++; output.append("0\n"); } } } if (dc > 1) { dd++; output.append("0\n"); } while (dd++ <= n) { output.append("0\n"); } System.out.print(output); } }

Compilation message (stderr)

Note: jobs.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
#Verdict Execution timeMemoryGrader output
Fetching results...