답안 #45818

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
45818 2018-04-16T08:26:18 Z Talant Bali Sculptures (APIO15_sculpture) C++17
0 / 100
199 ms 188988 KB
#include <bits/stdc++.h>

#define fr first
#define sc second
#define OK puts("OK");
#define pb push_back
#define mk make_pair
#define int long long

using namespace std;

typedef long long ll;

const long long inf = (long long)1e15 + 7;
const long long N = (long long)2e5 + 7;

long long n,a,b;
long long ar[N],p[N];
set<int> dp[2002][2002];
long long mn = inf;

long long calc (long long l,long long r) {
      return (p[r] - p[l - 1]);
}

main () {
      cin >> n >> a >> b;

      for (long long i = 1; i <= n; i ++) {
            cin >> ar[i];
            p[i] = p[i - 1] + ar[i];
            dp[i][1].insert(p[i]);
      }
      for (long long j = 2; j <= b; j ++) {
            for (long long i = j; i <= n; i ++) {
                  for (long long l = 1; l < i; l ++) {
                        int mn = inf;
                        for (auto to : dp[l][j - 1]) {
                              mn = min(mn,to | calc(l + 1,i));
                        }
                        dp[i][j].insert(mn);
                  }
            }
      }
      for (long long i = a; i <= b; i ++) {
            for (auto to : dp[n][i])
                  mn = min(mn,to);
      }

      cout << mn << endl;
}
/**
6 1 3
8 1 2 1 5 4
**/

Compilation message

sculpture.cpp:26:7: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main () {
       ^
# 결과 실행 시간 메모리 Grader output
1 Correct 175 ms 188536 KB Output is correct
2 Correct 162 ms 188640 KB Output is correct
3 Correct 154 ms 188640 KB Output is correct
4 Correct 170 ms 188728 KB Output is correct
5 Correct 171 ms 188792 KB Output is correct
6 Incorrect 165 ms 188792 KB Output isn't correct
7 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 163 ms 188792 KB Output is correct
2 Correct 161 ms 188792 KB Output is correct
3 Correct 156 ms 188820 KB Output is correct
4 Correct 177 ms 188876 KB Output is correct
5 Correct 199 ms 188876 KB Output is correct
6 Incorrect 176 ms 188876 KB Output isn't correct
7 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 166 ms 188884 KB Output is correct
2 Correct 164 ms 188928 KB Output is correct
3 Correct 164 ms 188928 KB Output is correct
4 Correct 165 ms 188928 KB Output is correct
5 Correct 163 ms 188928 KB Output is correct
6 Incorrect 168 ms 188928 KB Output isn't correct
7 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 184 ms 188928 KB Output is correct
2 Correct 163 ms 188928 KB Output is correct
3 Correct 162 ms 188928 KB Output is correct
4 Correct 161 ms 188928 KB Output is correct
5 Correct 167 ms 188980 KB Output is correct
6 Incorrect 166 ms 188980 KB Output isn't correct
7 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 164 ms 188980 KB Output is correct
2 Correct 165 ms 188980 KB Output is correct
3 Correct 171 ms 188980 KB Output is correct
4 Correct 185 ms 188980 KB Output is correct
5 Correct 170 ms 188988 KB Output is correct
6 Incorrect 174 ms 188988 KB Output isn't correct
7 Halted 0 ms 0 KB -