# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
125396 | 2019-07-05T07:57:22 Z | acebroad | Bali Sculptures (APIO15_sculpture) | C++17 | 2 ms | 380 KB |
#include<cstdio> #include<algorithm> #include<iostream> using namespace std; typedef long long ll; ll n, a, b; ll arr[2005]; //ll pow2(int p) { // ll v = 1; // for(int i = 0; i < p; i++) v *= 2; // return v; //} int main() { cin >> n >> a >> b; for (int i = 0; i < n; i++) cin >> arr[i]; ll p = 0; ll divs = 0; ll sum = 0; while (true) { divs = 0; sum = 0; ll m = 1LL << p; bool success = true; for (int i = 0; i < n; i++) { if (sum + arr[i] < m) sum += arr[i]; else { if (divs >= b) { success = false; break; } else { divs++; sum = arr[i]; } } } if (success && divs >= a) { break; } p++; } // printf("%lld\n", pow2(p)); ll ans = 1LL << (p - 1); ll map = 0; map |= 1LL << (p - 1); ll cur = p - 2; while (cur >= 0) { divs = 1; sum = 0; bool success = true; ll lastsum = 0; for(int i = 0; i < n; i++) { lastsum = sum; sum = sum + arr[i]; // if (sum > map) { // success = false; // break; // } for(ll j = cur; j < 64; j++) { // bit violence if (!(map & (1LL << j)) && (sum & (1LL << j))) { if (sum > map) { // cout << "div/ " << map << " " << divs << " " << sum << " " << lastsum << " " << j << endl; divs++; sum = sum - lastsum; break; } // divs++; // sum = arr[i]; // break; } } if (divs > b) { success = false; // cout << "too many divs\n"; break; } // bit violence // if ((nsum ^ map) & ~((1 << (p-2)) - 1)) { // // } } for(ll j = cur; j < 64; j++) { // bit violence if (!(map & (1LL << j)) && (sum & (1LL << j))) { success = false; break; } } // cout << success << " " << divs << " " << map << " " << cur << endl; if (!success || divs < a || divs > b) { // cout << "fail/ " << success << " " << divs << endl; map |= 1 << cur; } cur--; } cout << map << '\n'; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Incorrect | 2 ms | 376 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Incorrect | 2 ms | 256 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 KB | Output is correct |
2 | Incorrect | 2 ms | 256 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 KB | Output is correct |
2 | Incorrect | 2 ms | 376 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 KB | Output is correct |
2 | Incorrect | 2 ms | 380 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |