| Task: | Factory |
| Sender: | HIIT AND RUN |
| Submission time: | 2017-05-27 14:23:15 +0300 |
| Language: | Java |
| Status: | READY |
| Result: | WRONG ANSWER |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.19 s | details |
| #2 | ACCEPTED | 0.18 s | details |
| #3 | ACCEPTED | 0.17 s | details |
| #4 | ACCEPTED | 0.17 s | details |
| #5 | ACCEPTED | 0.83 s | details |
| #6 | WRONG ANSWER | 0.83 s | details |
| #7 | ACCEPTED | 0.91 s | details |
| #8 | WRONG ANSWER | 0.78 s | details |
| #9 | WRONG ANSWER | 0.91 s | details |
| #10 | WRONG ANSWER | 0.94 s | details |
| #11 | ACCEPTED | 0.92 s | details |
| #12 | WRONG ANSWER | 0.71 s | details |
| #13 | ACCEPTED | 0.89 s | details |
| #14 | WRONG ANSWER | 0.76 s | details |
| #15 | ACCEPTED | 0.85 s | details |
| #16 | WRONG ANSWER | 0.17 s | details |
| #17 | WRONG ANSWER | 0.17 s | details |
Code
//package hiit;
import java.util.*;
public class F {
static HashSet<Integer>[] downLine;
static int[] children;
static int[] parents;
static PriorityQueue<Job> q;
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int n = scanner.nextInt();
int m = scanner.nextInt();
children = new int[n+1];
parents = new int[n+1];
downLine = new HashSet[n+1];
for (int i=1; i<=n; i++) {
downLine[i] = new HashSet();
}
for (int i=1; i<=m; i++) {
int a = scanner.nextInt();
int b = scanner.nextInt();
downLine[a].add(b);
children[a]++;
parents[b]++;
}
q = new PriorityQueue<>();
for (int i=1; i<=n; i++) {
if (parents[i] == 0) {
q.add(new Job(i, children[i]));
}
}
int time = 0;
while (!q.isEmpty()) {
time++;
Job wait = q.poll();
if (!q.isEmpty()) work(q.poll());
work(wait);
}
System.out.println(time);
}
static void work(Job job) {
for (Integer child : downLine[job.node]) {
parents[child]--;
if (parents[child] == 0) {
q.add(new Job(child, children[child]));
}
}
}
}
class Job implements Comparable<Job> {
int node;
int children;
public Job(int node, int children) {
this.node = node;
this.children = children;
}
@Override
public int compareTo(Job o) {
if (this.children > o.children) return -1;
if (this.children < o.children) return 1;
return 0;
}
}Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 1 0 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 2
Verdict: ACCEPTED
| input |
|---|
| 2 0 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 3
Verdict: ACCEPTED
| input |
|---|
| 2 1 2 1 |
| correct output |
|---|
| 2 |
| user output |
|---|
| 2 |
Test 4
Verdict: ACCEPTED
| input |
|---|
| 500 0 |
| correct output |
|---|
| 250 |
| user output |
|---|
| 250 |
Test 5
Verdict: ACCEPTED
| input |
|---|
| 500 124750 66 104 50 159 173 457 200 154 ... |
| correct output |
|---|
| 500 |
| user output |
|---|
| 500 |
Test 6
Verdict: WRONG ANSWER
| input |
|---|
| 500 96771 376 390 243 497 417 360 107 80 ... |
| correct output |
|---|
| 413 |
| user output |
|---|
| 414 |
Test 7
Verdict: ACCEPTED
| input |
|---|
| 500 106799 96 245 68 62 122 119 460 454 ... |
| correct output |
|---|
| 433 |
| user output |
|---|
| 433 |
Test 8
Verdict: WRONG ANSWER
| input |
|---|
| 500 83550 76 338 111 174 88 142 114 463 ... |
| correct output |
|---|
| 365 |
| user output |
|---|
| 370 |
Test 9
Verdict: WRONG ANSWER
| input |
|---|
| 500 98051 281 60 312 284 270 474 385 224 ... |
| correct output |
|---|
| 410 |
| user output |
|---|
| 411 |
Test 10
Verdict: WRONG ANSWER
| input |
|---|
| 500 86622 5 320 50 107 182 483 385 500 ... |
| correct output |
|---|
| 372 |
| user output |
|---|
| 377 |
Test 11
Verdict: ACCEPTED
| input |
|---|
| 500 99445 421 286 392 406 155 290 475 453 ... |
| correct output |
|---|
| 396 |
| user output |
|---|
| 396 |
Test 12
Verdict: WRONG ANSWER
| input |
|---|
| 500 99832 283 149 315 396 264 422 224 388 ... |
| correct output |
|---|
| 410 |
| user output |
|---|
| 411 |
Test 13
Verdict: ACCEPTED
| input |
|---|
| 500 116149 446 185 232 35 498 391 189 63 ... |
| correct output |
|---|
| 457 |
| user output |
|---|
| 457 |
Test 14
Verdict: WRONG ANSWER
| input |
|---|
| 500 84757 71 205 286 360 184 486 30 228 ... |
| correct output |
|---|
| 364 |
| user output |
|---|
| 368 |
Test 15
Verdict: ACCEPTED
| input |
|---|
| 500 108617 126 250 76 224 449 69 200 63 ... |
| correct output |
|---|
| 439 |
| user output |
|---|
| 439 |
Test 16
Verdict: WRONG ANSWER
| input |
|---|
| 10 20 7 8 1 3 4 8 5 9 ... |
| correct output |
|---|
| 5 |
| user output |
|---|
| 6 |
Test 17
Verdict: WRONG ANSWER
| input |
|---|
| 10 20 2 9 9 8 4 3 7 3 ... |
| correct output |
|---|
| 5 |
| user output |
|---|
| 6 |
