Submission #1119445

#TimeUsernameProblemLanguageResultExecution timeMemory
1119445johuJob Scheduling (CEOI12_jobs)Java
50 / 100
1064 ms64364 KiB
import java.util.*; import java.io.*; public class jobs { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static PrintWriter pr = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out))); static StringTokenizer st; static String next() throws IOException { while (st == null || !st.hasMoreTokens()) st = new StringTokenizer(br.readLine().trim()); return st.nextToken(); } static char nextChar() throws IOException { return next().charAt(0); } static double nextDouble() throws IOException { return Double.parseDouble(next()); } static int nextInt() throws IOException { return Integer.parseInt(next()); } static long nextLong() throws IOException { return Long.parseLong(next()); } static String nextLine() throws IOException { return br.readLine().trim(); } static final int MAXN = 100001; static int[] Cn = new int[MAXN]; static List<Integer>[] Req = new ArrayList[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 { n = nextInt(); d = nextInt(); m = nextInt(); for (int x = 0; x <= n; x++) { Req[x] = new ArrayList<>(); Cn[x] = 0; } for (int i = 0; i < m; i++) { int a = nextInt() + d; Req[a].add(i + 1); Cn[a]++; } // Compute lower and upper bounds for binary search int left = 1, sol = 0, r = 0; for (int x = 1; x <= n; x++) { if (Cn[x] == 0) { if (r <= d) r++; } else { if ((Cn[x] + d) / (d + 1) > left) { left = (Cn[x] + d) / (d + 1); } if (r * sol >= Cn[x]) { r -= (Cn[x] + sol - 1) / sol; r++; } else { sol += (Cn[x] - r * sol + d) / (d + 1); r = 1; } } } // Binary search to find the solution while (left < sol) { int mid = (left + sol) / 2; if (test(mid)) { sol = mid; } else { left = mid + 1; } } System.out.println(sol); // Output the schedule int dc = 1, dd = 1, x = 1; Iterator<Integer> p = Req[1].iterator(); while (dd <= n) { if (!p.hasNext()) { x++; while (x <= n && Req[x].isEmpty()) x++; if (x > n) break; p = Req[x].iterator(); } if (dd < x - d) { System.out.println("0"); dd++; dc = 1; } else { System.out.print(p.next() + " "); if (++dc > sol) { dc = 1; dd++; System.out.println("0"); } } } if (dc > 1) { dd++; System.out.println("0"); } while (dd++ <= n) { System.out.println("0"); } } }

Compilation message (stderr)

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