Submission #100468

#TimeUsernameProblemLanguageResultExecution timeMemory
100468square1001Koala Game (APIO17_koala)C++14
100 / 100
73 ms512 KiB
#include "koala.h" #include <vector> #include <algorithm> using namespace std; int minValue(int N, int W) { // TODO: Implement Subtask 1 solution here. // You may leave this function unmodified if you are not attempting this // subtask. int B[105], R[105]; for(int i = 0; i < N; ++i) B[i] = (i == 0 ? 1 : 0); playRound(B, R); for(int i = 0; i < N; ++i) { if(R[i] <= B[i]) return i; } return -1; } int maxValue(int N, int W) { // TODO: Implement Subtask 2 solution here. // You may leave this function unmodified if you are not attempting this // subtask. int B[105], R[105], C[105]; for(int i = 0; i < N; ++i) C[i] = 1; while(true) { int rem = 0; for(int i = 0; i < N; ++i) rem += C[i]; if(rem == 1) break; for(int i = 0; i < N; ++i) { B[i] = (C[i] ? W / rem : 0); } playRound(B, R); for(int i = 0; i < N; ++i) { if(C[i]) C[i] = (B[i] < R[i] ? 1 : 0); } } for(int i = 0; i < N; ++i) { if(C[i]) return i; } return -1; } int greaterValue(int N, int W) { // TODO: Implement Subtask 3 solution here. // You may leave this function unmodified if you are not attempting this // subtask. int B[105], R[105]; vector<int> H = { 1, 2, 4, 7, 12, 22, 40, 70 }; int T = 0; for(int i = 4; i >= 1; i /= 2) { int D = min(H[T + i] - 1, W / 2); for(int j = 0; j < N; ++j) { B[j] = (j <= 1 ? D : 0); } playRound(B, R); bool f0 = (B[0] < R[0]), f1 = (B[1] < R[1]); if(f0 != f1) return f0 ? 0 : 1; if(f0) T += i; } return -1; } #include <iostream> using namespace std; pair<int, int> divide_val(int N, int W, int L, int R) { // Dividing [L, R] for(int i = 1; i * (R - L + 1) <= W; ++i) { for(int j = 0; i * (R - L + 1) + j * (L - 1) <= W && j < i; ++j) { int mxscore = -1, mxused = -1, usei = -1; for(int k = 0; k <= R - L + 1; ++k) { if((N - R) + k * (i + 1) > W) break; int rem = W - ((N - R) + k * (i + 1)); int usej = rem / (j + 1); int score = (R + (R - k + 1)) * k / 2 + ((L - 1) + (L - usej)) * usej / 2; if(score > mxscore) mxscore = score, mxused = k + usej, usei = k; else if(score == mxscore && k + usej > mxused) mxused = k + usej, usei = k; } if(1 <= usei && usei <= R - L) return make_pair(i, j); } } return make_pair(-1, -1); } void allValues(int N, int W, int *P) { // TODO: Implement Subtask 4 + 5 solution here. // You may leave this block unmodified if you are not attempting this // subtask. int B[105], R[105]; vector<int> rng = { 1, N + 1 }; for(int i = 0; i < N; ++i) P[i] = 1; for(int i = 1; i < N; ++i) { int ptr = -1; for(int j = 0; j < i; ++j) { if(rng[j + 1] - rng[j] != 1) { ptr = j; break; } } pair<int, int> val = divide_val(N, W, rng[ptr], rng[ptr + 1] - 1); for(int j = 0; j < N; ++j) { if(P[j] == rng[ptr]) B[j] = val.first; else if(P[j] < rng[ptr]) B[j] = val.second; else B[j] = 0; } playRound(B, R); int delta = 0; for(int j = 0; j < N; ++j) { if(P[j] == rng[ptr] && B[j] >= R[j]) ++delta; } for(int j = 0; j < N; ++j) { if(P[j] == rng[ptr] && B[j] < R[j]) P[j] += delta; } rng.insert(rng.begin() + ptr + 1, rng[ptr] + delta); } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...