-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJ05077_TinhLuong.java
101 lines (93 loc) · 2.98 KB
/
J05077_TinhLuong.java
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
//B21DCCN441
import java.util.*;
import java.math.*;
import java.io.*;
class Employee {
public String name, id, group, idPhongBan;
public long namCongTac, heSo, soNgayCong, Luong;
public Employee(String id, String maPhongBan, String name, long luong, long songay) {
this.id = id;
this.group = id.substring(0, 1);
this.idPhongBan = maPhongBan;
this.name = name;
this.namCongTac = Integer.valueOf(id.substring(1, 3));
this.soNgayCong = songay;
this.heSo = heso(group, namCongTac);
this.Luong = this.heSo * this.soNgayCong * luong * 1000;
}
public long heso(String g, long y) {
if (g.equals("A")) {
if (y <= 3) {
return 10;
} else if (y <= 8) {
return 12;
} else if (y <= 15) {
return 14;
}
return 20;
} else if (g.equals("B")) {
if (y <= 3) {
return 10;
} else if (y <= 8) {
return 11;
} else if (y <= 15) {
return 13;
}
return 16;
} else if (g.equals("C")) {
if (y <= 3) {
return 9;
} else if (y <= 8) {
return 10;
} else if (y <= 15) {
return 12;
}
return 14;
}
if (y <= 3) {
return 8;
} else if (y <= 8) {
return 9;
} else if (y <= 15) {
return 11;
}
return 13;
}
@Override
public String toString() {
return id + " " + name + " " + idPhongBan + " " + Luong;
}
}
public class J05077_TinhLuong {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
TreeMap<String, String> tm = new TreeMap<>();
int soPhongBan = sc.nextInt();
sc.nextLine();
for (int i = 0; i < soPhongBan; i++) {
String s = sc.nextLine();
ArrayList<String> pb = new ArrayList<>();
StringTokenizer ss = new StringTokenizer(s);
while (ss.hasMoreTokens()) {
pb.add(ss.nextToken());
}
String maPhongBan = pb.get(0);
String tenPhongBan = "";
for (int j = 1; j < pb.size(); j++) {
tenPhongBan += pb.get(j) + " ";
}
tenPhongBan = tenPhongBan.substring(0, tenPhongBan.length() - 1);
tm.put(maPhongBan, tenPhongBan);
}
int n = sc.nextInt();
ArrayList<Employee> a = new ArrayList<>();
for (int i = 0; i < n; i++) {
sc.nextLine();
String id = sc.nextLine();
a.add(new Employee(id, tm.get(id.substring(3, 5)), sc.nextLine(), sc.nextLong(), sc.nextLong()));
}
for (Employee e : a) {
System.out.println(e);
}
}
}