-
Notifications
You must be signed in to change notification settings - Fork 0
/
TugasPemrograman1.java
397 lines (340 loc) · 13 KB
/
TugasPemrograman1.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
import java.io.PrintWriter;
import java.util.*;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
class Pengunjung{
int id;
String jenis;
long poin;
long uang;
int totalWahana;
public Pengunjung(int id,String jenis,long uang){
this.id = id;
this.jenis = jenis;
this.poin = 0;
this.uang = uang;
this.totalWahana = 0;
}
void updateStatusPengunjung(long poinWahana,long harga){
this.poin += poinWahana;
this.uang -= harga;
this.totalWahana += 1;
}
String cariRencanaTerbaik(ArrayList<Wahana> daftarWahana,Rencana[][][] dp){
int jumlahWahana = daftarWahana.size();
int budget = (int) this.uang;
Rencana rencanaTerbaik = rencanaHelper(1,0,jumlahWahana,daftarWahana,budget,dp);
StringBuilder result = new StringBuilder();
long maxPoin = rencanaTerbaik.poin;
result.append(maxPoin);
for (int id: rencanaTerbaik.listID){
result.append(" ");
result.append(id);
}
return result.toString();
}
Rencana rencanaHelper(int id,int idSebelum, int jumlahWahana, ArrayList<Wahana> daftarWahana, int uang, Rencana[][][] dp){
if (id > jumlahWahana || uang <= 0) {
return new Rencana(uang);
}
if (idSebelum == 0){
if (dp[id][uang][2] != null)
return dp[id][uang][2];
} else {
if (dp[id][uang][idSebelum%2] != null && id % 2 != idSebelum % 2)
return dp[id][uang][idSebelum%2];
}
Rencana excludeWahanaSekarang = rencanaHelper(id + 1, idSebelum, jumlahWahana, daftarWahana, uang, dp);
if ((uang >= daftarWahana.get(id - 1).harga) && ((id % 2 != idSebelum % 2) || (idSebelum == 0))) {
Rencana rencanaSekarang = new Rencana(0);
rencanaSekarang.listID.add(id);
rencanaSekarang.spent += daftarWahana.get(id - 1).harga;
rencanaSekarang.poin += daftarWahana.get(id - 1).poin;
Rencana includeWahanaSekarang = rencanaSekarang.tambahRencana(rencanaHelper(id + 1, id, jumlahWahana, daftarWahana,
uang - (int) daftarWahana.get(id - 1).harga, dp));
if (includeWahanaSekarang.compareTo(excludeWahanaSekarang) > 0) {
if (idSebelum == 0)
return dp[id][uang][2] = includeWahanaSekarang;
return dp[id][uang][idSebelum%2] = includeWahanaSekarang;
}
}
if (idSebelum == 0)
return dp[id][uang][2] = excludeWahanaSekarang;
return dp[id][uang][idSebelum%2] = excludeWahanaSekarang;
}
}
class PengunjungComparator implements Comparator<ArrayList<Integer>>{
@Override
public int compare(ArrayList<Integer> a1, ArrayList<Integer> a2) {
if (a1.get(0) > a2.get(0))
return 1;
else if (a1.get(0).equals(a2.get(0))){
if (a1.get(1) > a2.get(1))
return 1;
else
return -1;
} else
return -1;
}
}
class Wahana{
int id;
long harga;
long poin;
int kapasitas;
int kapasitasFT;
PriorityQueue<ArrayList<Integer>> antreanR;
PriorityQueue<ArrayList<Integer>> antreanFT;
public Wahana(int id,long harga,long poin,int kapasitas,double persentaseFT){
this.id = id;
this.harga = harga;
this.poin = poin;
this.kapasitas = kapasitas;
this.kapasitasFT = (int) Math.ceil((persentaseFT*kapasitas)/100);
this.antreanR = new PriorityQueue<>(new PengunjungComparator());
this.antreanFT = new PriorityQueue<>(new PengunjungComparator());
}
int tambahkanPengunjung(Pengunjung p){
if (p.uang < this.harga)
return -1;
ArrayList<Integer> infoPengunjung = new ArrayList<>();
infoPengunjung.add(p.totalWahana);
infoPengunjung.add(p.id);
if (p.jenis.equals("FT")){
this.antreanFT.add(infoPengunjung);
} else{
this.antreanR.add(infoPengunjung);
}
return this.antreanR.size() + this.antreanFT.size();
}
String mainkanWahana(ArrayList<Pengunjung> listPengunjung,Deque<Pengunjung> daftarKeluar){
int banyakFT = 0;
int banyakPengunjung = 0;
StringBuilder idBermain = new StringBuilder();
while((!this.antreanFT.isEmpty()) && (banyakFT < this.kapasitasFT)){
Pengunjung p = listPengunjung.get(this.antreanFT.poll().get(1) - 1);
if (p.uang >= this.harga){
banyakFT++;
banyakPengunjung++;
p.updateStatusPengunjung(this.poin,this.harga);
idBermain.append(p.id);
idBermain.append(" ");
if (p.uang == 0)
daftarKeluar.add(p);
}
}
while((!this.antreanR.isEmpty()) && (banyakPengunjung < this.kapasitas)){
Pengunjung p = listPengunjung.get(this.antreanR.poll().get(1) - 1);
if (p.uang >= this.harga) {
banyakPengunjung++;
p.updateStatusPengunjung(this.poin,this.harga);
idBermain.append(p.id);
idBermain.append(" ");
if (p.uang == 0)
daftarKeluar.add(p);
}
}
while((!this.antreanFT.isEmpty()) && (banyakPengunjung < this.kapasitas)){
Pengunjung p = listPengunjung.get(this.antreanFT.poll().get(1) - 1);
if (p.uang >= this.harga){
banyakPengunjung++;
p.updateStatusPengunjung(this.poin,this.harga);
idBermain.append(p.id);
idBermain.append(" ");
if (p.uang == 0)
daftarKeluar.add(p);
}
}
String idBermainstr = idBermain.toString();
if (idBermainstr.length() == 0){
idBermainstr += -1;
}
return idBermainstr;
}
int cariUrutanBermain(int idPengunjung,ArrayList<Pengunjung> listPengunjung){
PriorityQueue<ArrayList<Integer>> antreanRcopy = new PriorityQueue<>(this.antreanR);
PriorityQueue<ArrayList<Integer>> antreanFTcopy = new PriorityQueue<>(this.antreanFT);
int urutan = 1;
while (!(antreanRcopy.isEmpty() && antreanFTcopy.isEmpty())){
int banyakFT = 0;
int banyakPengunjung = 0;
while((!antreanFTcopy.isEmpty()) && (banyakFT < this.kapasitasFT)){
Pengunjung p = listPengunjung.get(antreanFTcopy.poll().get(1) - 1);
if (p.uang >= this.harga){
banyakFT++;
banyakPengunjung++;
if (p.id == idPengunjung)
return urutan;
urutan++;
}
}
while((!antreanRcopy.isEmpty()) && (banyakPengunjung < this.kapasitas)){
Pengunjung p = listPengunjung.get(antreanRcopy.poll().get(1) - 1);
if (p.uang >= this.harga){
banyakPengunjung++;
if (p.id == idPengunjung)
return urutan;
urutan++;
}
}
while((!antreanFTcopy.isEmpty()) && (banyakPengunjung < this.kapasitas)){
Pengunjung p = listPengunjung.get(antreanFTcopy.poll().get(1) - 1);
if (p.uang >= this.harga){
banyakPengunjung++;
if (p.id == idPengunjung)
return urutan;
urutan++;
}
}
}
return -1;
}
}
class Rencana{
long poin;
int uang;
ArrayList<Integer> listID;
long spent;
public Rencana(int uang){
this.uang = uang;
this.poin = 0;
this.listID = new ArrayList<>();
this.spent = 0;
}
static int compareList(ArrayList<Integer> list1, ArrayList<Integer> list2) {
for (int i = 0; i < Math.min(list1.size(), list2.size()); i++) {
if (!list1.get(i).equals(list2.get(i)))
return list2.get(i) - list1.get(i);
}
return list2.size() - list1.size();
}
public int compareTo(Rencana o) {
if (this.poin != o.poin)
return (int) (this.poin - o.poin);
if (this.spent != o.spent)
return (int)(o.spent - this.spent);
return compareList(this.listID,o.listID);
}
Rencana tambahRencana(Rencana otherRencana){
Rencana rencanaBaru = new Rencana(this.uang + otherRencana.uang);
rencanaBaru.poin = this.poin + otherRencana.poin;
rencanaBaru.spent = this.spent + otherRencana.spent;
rencanaBaru.listID.addAll(this.listID);
rencanaBaru.listID.addAll(otherRencana.listID);
return rencanaBaru;
}
}
public class TugasPemrograman1 {
private static InputReader in;
private static PrintWriter out;
static ArrayList<Wahana> listWahana = new ArrayList<>();
static ArrayList<Pengunjung> listPengunjung = new ArrayList<>();
static Deque<Pengunjung> daftarKeluar = new ArrayDeque<>();
static Rencana[][][] dp;
// Method A
static int A(int idPengunjung, int idWahana){
return listWahana.get(idWahana).tambahkanPengunjung(listPengunjung.get(idPengunjung));
}
static String E(int idWahana){
return listWahana.get(idWahana - 1).mainkanWahana(listPengunjung,daftarKeluar);
}
static int S(int idPengunjung, int idWahana){
return listWahana.get(idWahana - 1).cariUrutanBermain(idPengunjung,listPengunjung);
}
static long F(int pos){
if (daftarKeluar.isEmpty())
return -1;
if (pos == 0)
return daftarKeluar.removeFirst().poin;
return daftarKeluar.removeLast().poin;
}
static String O(int idPengunjung){
return listPengunjung.get(idPengunjung - 1).cariRencanaTerbaik(listWahana,dp);
}
public static void main(String[] args) {
InputStream inputStream = System.in;
in = new InputReader(inputStream);
OutputStream outputStream = System.out;
out = new PrintWriter(outputStream);
// Read Input
// Wahana
int M = in.nextInt();
for (int i = 0; i < M; i++){
long h = in.nextLong();
long p = in.nextLong();
int kp = in.nextInt();
int ft = in.nextInt();
listWahana.add(new Wahana(i+1,h,p,kp,ft));
}
long maxBudget = 0;
// Pengunjung
int N = in.nextInt();
for (int i = 0; i < N; i++){
String t = in.next();
long u = in.nextLong();
if (u > maxBudget)
maxBudget = u;
listPengunjung.add(new Pengunjung(i+1,t,u));
}
boolean isFirstQ = true;
// Query
int T = in.nextInt();
for (int i = 0; i < T; i++){
String perintah = in.next();
if (perintah.equals("A")){
int idPengunjung = in.nextInt();
int idWahana = in.nextInt();
out.println(A(idPengunjung-1,idWahana-1));
} else if (perintah.equals("E")){
int idWahana = in.nextInt();
out.println(E(idWahana));
} else if (perintah.equals("S")){
int idPengunjung = in.nextInt();
int idWahana = in.nextInt();
out.println(S(idPengunjung,idWahana));
} else if (perintah.equals("F")){
int p = in.nextInt();
out.println(F(p));
} else{
if (isFirstQ){
dp = new Rencana[M + 1][(int) maxBudget + 1][3];
isFirstQ = false;
}
int idPengunjung = in.nextInt();
out.println(O(idPengunjung));
}
}
// don't forget to close the output
out.close();
}
// taken from https://codeforces.com/submissions/Petr
// together with PrintWriter, these input-output (IO) is much faster than the usual Scanner(System.in) and System.out
// use these classes to avoid your fast algorithm gets Time Limit Exceeded caused by slow input-output (IO)
static class InputReader {
public BufferedReader reader;
public StringTokenizer tokenizer;
public InputReader(InputStream stream) {
reader = new BufferedReader(new InputStreamReader(stream), 32768);
tokenizer = null;
}
public String next() {
while (tokenizer == null || !tokenizer.hasMoreTokens()) {
try {
tokenizer = new StringTokenizer(reader.readLine());
} catch (IOException e) {
throw new RuntimeException(e);
}
}
return tokenizer.nextToken();
}
public int nextInt() {
return Integer.parseInt(next());
}
public long nextLong(){
return Long.parseLong(next());
}
}
}