제출 #95522

#제출 시각아이디문제언어결과실행 시간메모리
95522choikiwonBootfall (IZhO17_bootfall)C++17
100 / 100
580 ms2168 KiB
#include<bits/stdc++.h>
using namespace std;

const int MN = 502;
const int SQ = 50;

int N;
int A[MN];
bitset<MN * MN> dp, tmp;
int cnt[MN * MN];

int main() {
    scanf("%d", &N);

    int sum = 0;
    for(int i = 0; i < N; i++) {
        scanf("%d", &A[i]);
        sum += A[i];
    }
    if(sum % 2) {
        printf("0");
        return 0;
    }

    dp[0] = 1;
    for(int i = 0; i < N; i++) {
        dp |= (dp << A[i]);
    }
    if(!dp[sum / 2]) {
        printf("0");
        return 0;
    }

    for(int l = 0; l < N; l += SQ) {
        int r = min(N, l + SQ) - 1;

        dp.reset();
        dp[0] = 1;
        for(int i = 0; i < N; i++) {
            if(l <= i && i <= r) continue;
            dp |= (dp << A[i]);
        }

        for(int i = l; i <= r; i++) {
            tmp = dp;

            for(int j = l; j <= r; j++) {
                if(j == i) continue;
                tmp |= (tmp << A[j]);
            }

            for(int j = 0; j < MN * MN; j++) {
                if(tmp[j] && 2 * j + A[i] - sum >= 0) {
                    cnt[ 2 * j + A[i] - sum ]++;
                }
            }
        }
    }
    int ans = 0;
    for(int i = 0; i < MN * MN; i++) {
        if(cnt[i] == N) ans++;
    }
    printf("%d\n", ans);
    for(int i = 0; i < MN * MN; i++) {
        if(cnt[i] == N) printf("%d ", i);
    }
}

컴파일 시 표준 에러 (stderr) 메시지

bootfall.cpp: In function 'int main()':
bootfall.cpp:13:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &N);
     ~~~~~^~~~~~~~~~
bootfall.cpp:17:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &A[i]);
         ~~~~~^~~~~~~~~~~~~
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...