# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
38245 | mirbek01 | Bootfall (IZhO17_bootfall) | C++14 | 0 ms | 4944 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
# include <bits/stdc++.h>
# define pb push_back
# define fr first
# define sc second
# define mk make_pair
using namespace std;
const long long linf = 1e18 + 7;
const int inf = 1e9 + 7;
const int N = 250005;
typedef long long ll;
int n, a[N], dp[N], cnt[N], s;
vector <int> ans;
int main(){
dp[0] = 1;
scanf("%d", &n);
for(int i = 1; i <= n; i ++){
scanf("%d", &a[i]);
s += a[i];
}
for(int i = 1; i <= n; i ++){
int ss = 0;
for(int j = 1; j <= s; j ++)
dp[j] = 0;
for(int j = 1; j <= n; j ++){
if(j != i){
ss += a[j];
for(int k = s; k - a[j] >= 0; k --)
dp[k] += dp[k - a[j]];
}
}
for(int j = ss / 2 + 1; j <= ss; j ++)
if(dp[j]) cnt[j * 2 - ss] ++;
}
for(int i = 1; i <= s; i ++)
if(cnt[i] == n) ans.pb(i);
sort(ans.begin(), ans.end());
printf("%d\n", ans.size());
for(int i : ans)
printf("%d ", i);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |