#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp make_pair
typedef long long int LLI;
typedef pair<int,int> pii;
typedef vector<int> vi;
typedef vector<pii> vpii;
#include "koala.h"
int B[100],R[100];
int minValue(int N, int W) {
int i;
for (i = 0; i < N; i++) B[i] = 0;
B[0] = 1;
playRound(B,R);
for (i = 0; i < N; i++) {
if (R[i] == 0) return i;
}
return 0;
}
int maxValue(int N, int W) {
int i;
for (i = 0; i < N; i++) B[i] = 1;
playRound(B,R);
int c = 0;
for (i = 0; i < N; i++) {
if (R[i] == 2) B[i] = 2;
else B[i] = 0;
}
playRound(B,R);
for (i = 0; i < N; i++) {
if (R[i] == 3) c++,B[i] = 4;
else B[i] = 0;
}
playRound(B,R);
for (i = 0; i < N; i++) {
if (R[i] == 5) B[i] = 11;
else B[i] = 0;
}
playRound(B,R);
for (i = 0; i < N; i++) {
if (R[i] == 12) return i;
}
}
int compare(int a,int b,int N,int W) {
int i,j;
for (j = 0; j < N; j++) B[j] = 0;
B[a] = B[b] = 1;
playRound(B,R);
if ((R[a] > 0) != (R[b] > 0)) return R[b] > 0;
for (j = 0; j < N; j++) B[j] = 0;
B[a] = B[b] = 11;
playRound(B,R);
if ((R[a] > 0) != (R[b] > 0)) return R[b] > 0;
for (j = 0; j < N; j++) B[j] = 0;
B[a] = B[b] = 3;
playRound(B,R);
if ((R[a] > 0) != (R[b] > 0)) return R[b] > 0;
for (j = 0; j < N; j++) B[j] = 0;
B[a] = B[b] = 6;
playRound(B,R);
if ((R[a] > 0) != (R[b] > 0)) return R[b] > 0;
for (i = 1; i <= 14; i++) {
for (j = 0; j < N; j++) B[j] = 0;
B[a] = B[b] = i;
playRound(B,R);
if ((R[a] > 0) != (R[b] > 0)) {
cout<<i<<" works"<<endl;
}
}
cout<<"ERROR"<<endl;
exit(0);
return -1;
}
int greaterValue(int N, int W) {
return compare(0,1,N,W);
}
int n,w;
int inv[100],temp[100];
bool comp(int a,int b) {
if (a == b) return 0;
else return compare(a,b,n,w);
}
int mergesort(int *arr,int l,int r) {
if (l == r) return 0;
int m = (l+r) / 2;
mergesort(arr,l,m),mergesort(arr,m+1,r);
int i = l,j = m+1,k = 0;
while ((i <= m) || (j <= r)) {
if (i > m) temp[k++] = arr[j++];
else if (j > r) temp[k++] = arr[i++];
else if (comp(arr[i],arr[j])) temp[k++] = arr[i++];
else temp[k++] = arr[j++];
}
for (i = 0; i < k; i++) arr[l+i] = temp[i];
return 0;
}
void allValues(int N, int W, int *P) {
n = N,w = W;
if (W == 2*N) {
// TODO: Implement Subtask 4 solution here.
// You may leave this block unmodified if you are not attempting this
// subtask.
} else {
int i;
for (i = 0; i < N; i++) inv[i] = i;
random_shuffle(inv,inv+N);
mergesort(inv,0,N-1);
for (i = 0; i < N; i++) P[inv[i]] = i+1;
}
}
Compilation message
koala.cpp: In function 'int maxValue(int, int)':
koala.cpp:46:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
376 KB |
Output is correct |
2 |
Correct |
7 ms |
456 KB |
Output is correct |
3 |
Correct |
8 ms |
464 KB |
Output is correct |
4 |
Correct |
8 ms |
464 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
20 ms |
508 KB |
Output is correct |
2 |
Correct |
19 ms |
600 KB |
Output is correct |
3 |
Correct |
22 ms |
788 KB |
Output is correct |
4 |
Correct |
21 ms |
812 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
123 ms |
852 KB |
Output is partially correct |
2 |
Partially correct |
140 ms |
852 KB |
Output is partially correct |
3 |
Partially correct |
136 ms |
852 KB |
Output is partially correct |
4 |
Partially correct |
117 ms |
852 KB |
Output is partially correct |
5 |
Partially correct |
104 ms |
852 KB |
Output is partially correct |
6 |
Partially correct |
126 ms |
852 KB |
Output is partially correct |
7 |
Partially correct |
118 ms |
852 KB |
Output is partially correct |
8 |
Partially correct |
110 ms |
852 KB |
Output is partially correct |
9 |
Partially correct |
118 ms |
852 KB |
Output is partially correct |
10 |
Partially correct |
161 ms |
852 KB |
Output is partially correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
852 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
60 ms |
852 KB |
Output is partially correct |
2 |
Partially correct |
83 ms |
852 KB |
Output is partially correct |
3 |
Partially correct |
52 ms |
852 KB |
Output is partially correct |
4 |
Partially correct |
61 ms |
852 KB |
Output is partially correct |
5 |
Partially correct |
65 ms |
852 KB |
Output is partially correct |
6 |
Partially correct |
62 ms |
852 KB |
Output is partially correct |
7 |
Partially correct |
64 ms |
928 KB |
Output is partially correct |
8 |
Partially correct |
56 ms |
928 KB |
Output is partially correct |
9 |
Partially correct |
61 ms |
928 KB |
Output is partially correct |
10 |
Partially correct |
59 ms |
928 KB |
Output is partially correct |
11 |
Partially correct |
86 ms |
928 KB |
Output is partially correct |
12 |
Partially correct |
60 ms |
928 KB |
Output is partially correct |
13 |
Partially correct |
57 ms |
928 KB |
Output is partially correct |
14 |
Partially correct |
63 ms |
928 KB |
Output is partially correct |
15 |
Partially correct |
65 ms |
928 KB |
Output is partially correct |
16 |
Partially correct |
58 ms |
928 KB |
Output is partially correct |
17 |
Partially correct |
62 ms |
928 KB |
Output is partially correct |
18 |
Partially correct |
58 ms |
928 KB |
Output is partially correct |
19 |
Partially correct |
61 ms |
928 KB |
Output is partially correct |
20 |
Partially correct |
76 ms |
928 KB |
Output is partially correct |
21 |
Partially correct |
77 ms |
928 KB |
Output is partially correct |
22 |
Partially correct |
60 ms |
928 KB |
Output is partially correct |
23 |
Partially correct |
58 ms |
928 KB |
Output is partially correct |
24 |
Partially correct |
81 ms |
928 KB |
Output is partially correct |
25 |
Partially correct |
54 ms |
928 KB |
Output is partially correct |
26 |
Partially correct |
75 ms |
928 KB |
Output is partially correct |
27 |
Partially correct |
58 ms |
928 KB |
Output is partially correct |
28 |
Partially correct |
59 ms |
928 KB |
Output is partially correct |
29 |
Partially correct |
63 ms |
928 KB |
Output is partially correct |
30 |
Partially correct |
55 ms |
928 KB |
Output is partially correct |
31 |
Partially correct |
78 ms |
928 KB |
Output is partially correct |
32 |
Partially correct |
56 ms |
928 KB |
Output is partially correct |
33 |
Partially correct |
53 ms |
928 KB |
Output is partially correct |
34 |
Partially correct |
54 ms |
928 KB |
Output is partially correct |
35 |
Partially correct |
87 ms |
928 KB |
Output is partially correct |
36 |
Partially correct |
85 ms |
928 KB |
Output is partially correct |
37 |
Partially correct |
59 ms |
928 KB |
Output is partially correct |
38 |
Partially correct |
77 ms |
928 KB |
Output is partially correct |
39 |
Partially correct |
61 ms |
928 KB |
Output is partially correct |
40 |
Partially correct |
57 ms |
928 KB |
Output is partially correct |