-
Notifications
You must be signed in to change notification settings - Fork 6
/
Super Computer.txt
48 lines (44 loc) · 1.4 KB
/
Super Computer.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Read inputs from System.in, Write outputs to System.out.
// Your class name has to be Solution
import java.util.*;
import java.io.*;
import java.math.*;
class Solution {
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
int n = in.nextInt();
Integer tabJour[][];
tabJour = new Integer[n][3];
for (int i = 0; i < n; i++) {
tabJour[i][0] = in.nextInt();
tabJour[i][1] = in.nextInt();
tabJour[i][2] = tabJour[i][1] + tabJour[i][0] - 1;
//System.out.println(tabJour[i][0] + " - " +tabJour[i][1] + " - " +tabJour[i][2]);
}
// trie le tableau en fonction des jours de fin de calcul
Arrays.sort(tabJour, new java.util.Comparator<Integer[]>() {
@Override
public int compare(Integer[] a, Integer[] b) {
return Integer.compare(a[2], b[2]);
}
});
/*
System.out.println();
for (int i = 0; i < n; i++) {
System.out.println(tabJour[i][0] + " - " +tabJour[i][1] + " - " +tabJour[i][2]);
}
System.out.println();
*/
int compteur = 0;
int limitSup = -1;
for (int i=0; i<n; i++){
// Teste si le premier jour d'utilisation n'est pas dans la limite d'utilisation
if(limitSup < tabJour[i][0]){
// ajout limite avec la fin d'utilisation du calculateur
limitSup = tabJour[i][2];
compteur++;
}
}
System.out.println(compteur);
}
}