# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
584722 | 2022-06-27T22:22:24 Z | sofapuden | Bali Sculptures (APIO15_sculpture) | C++14 | 1 ms | 248 KB |
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int mxN = 2e3+5; ll n, a, b, v[mxN], pre[mxN]; bool g1(ll mask){ vector<int> dp(n+1, mxN); dp[0] = 0; for(int i = 1; i <= n; ++i){ for(int j = 0; j < i; ++j){ if((mask|(pre[i]-pre[j])) == mask)dp[i] = min(dp[i],dp[j]+1); } } return dp[n] <= b; } bool g2(ll mask){ } int main(){ cin >> n >> a >> b; pre[0] = 0; for(int i = 1; i <= n; ++i)cin >> v[i], pre[i] = pre[i-1] + v[i]; ll ans = (1ll<<50)-1; for(int i = 49; ~i; --i){ if(a == 1 && g1(ans^(1<<i)))ans^=(1<<i); if(a > 1 && g2(ans^(1<<i)))ans^=(1<<i); } cout << ans << '\n'; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 248 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |