제출 #1084135

#제출 시각아이디문제언어결과실행 시간메모리
1084135SamueleVid죄수들의 도전 (IOI22_prison)C++17
32.50 / 100
14 ms1628 KiB
#include <bits/stdc++.h> using namespace std; int BASE = 3; int get_bit(int num, int digit) { for (int i = 0; i < digit; i ++) { num /= BASE; } return num % BASE; } vector<vector<int>> devise_strategy(int N) { int digits = log(N) / log(BASE) + 1; // 3 * xxxxxx + y // x = quale cifra sto guardando, sapendo che quelle più alte sono uguali // y = 0 : sono in B e il bit di A è 0 // 1 : sono in B e il bit di A è 1 // 2 : sono in A e devo passare il bit di A in B vector<vector<int>> s((BASE + 1) * (digits + 1), vector<int>(N + 1)); for (int x = 0; x < (BASE + 1) * (digits + 1); x ++) { // cout << x << '\n'; int bit = x % (BASE + 1); int digit = x / (BASE + 1); // cout << "x : " << x << '\n'; // cout << "who, bit, digit " << who << " " << bit << " " << digit << '\n'; if (digit == 0) { // start, occupa un po' di casi ma è solo uno tho s[x][0] = 0; int digit_next = digits; for (int j = 1; j <= N; j ++) { int bit_next = get_bit(j, digit_next - 1); s[x][j] = (digit_next * (BASE + 1)) + bit_next; } continue; } if (bit < BASE) { s[x][0] = 1; int digit_next = digit; for (int j = 1; j <= N; j ++) { int bit_next = get_bit(j, digit_next - 1); // cout << "bit_next : " << bit_next << '\n'; if (bit_next < bit) s[x][j] = -2; if (bit < bit_next) s[x][j] = -1; if (bit == bit_next) s[x][j] = (digit_next * (BASE + 1)) + BASE; } } if (bit == BASE) { s[x][0] = 0; int digit_next = digit - 1; for (int j = 1; j <= N; j ++) { int bit_next = get_bit(j, digit_next - 1); s[x][j] = (digit_next * (BASE + 1)) + bit_next; } } } return s; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...