Submission #170816

#TimeUsernameProblemLanguageResultExecution timeMemory
170816NightmarBali Sculptures (APIO15_sculpture)C++17
0 / 100
2 ms424 KiB
#include <iostream> #include <algorithm> #include <cmath> #include <string> #include <cstdlib> #include <vector> #include <queue> #include <set> #include <map> #include <cstdio> #include <iomanip> #define SWS ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0) #define pb push_back #define ppb pop_back #define ft first #define sd second #define read freopen("input.txt", "r", stdin) #define write freopen("output.txt", "w", stdout) #define files read; write using namespace std; typedef long long ll; typedef pair<int, int> pii; const int Z = (int)2e3 + 228; const int N = (int)3e5 + 228; const int INF = (int)1e9 + 228; const int MOD = (int)1e9 + 7; const ll LLINF = (ll)1e18 + 228; ll a[Z], pref[Z]; ll dp[Z][Z]; int main() { SWS; //files; int n, l, r; cin >> n >> l >> r; for (int i = 1; i <= n; i++) { cin >> a[i]; pref[i] = pref[i - 1] + a[i]; } for (int i = 0; i <= n; i++) for (int j = 0; j <= n; j++) dp[i][j] = LLINF; dp[0][0] = 0; for (int team = 1; team <= l; team++) for (int i = team; i <= n; i++) for (int j = team - 1; j < i; j++) dp[team][i] = min(dp[team][i], dp[team - 1][j] | (pref[i] - pref[j])); ll ans = dp[l][n]; for (int team = l + 1; team <= r; team++) { for (int i = team; i <= n; i++) for (int j = team - 1; j < i; j++) dp[team][i] = min(dp[team][i], dp[team - 1][j] | (pref[i] - pref[j])); ans = min(ans, dp[team][n]); } cout << ans; return 0; } /* 6 1 3 8 1 2 1 5 4 */
#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...