제출 #1118727

#제출 시각아이디문제언어결과실행 시간메모리
1118727KasymKBootfall (IZhO17_bootfall)C++17
0 / 100
1 ms352 KiB
#include "bits/stdc++.h"
using namespace std;
#define ff first
#define ss second
#define all(v) v.begin(), v.end()
#define ll long long
#define pb push_back
#define pii pair<int, int>
#define pli pair<ll, int>
#define pll pair<ll, ll>
#define tr(i, c) for(auto i = c.begin(); i != c.end(); ++i)
#define wr puts("----------------")
template<class T>bool umin(T& a,T b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool umax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
const int N = 355;
int v[N];
bool is[N*N];
bitset<N*N> dp;
set<int> x[N];
 
int main(){
    freopen("file.txt", "r", stdin);
    int n, sm = 0;
    scanf("%d", &n);
    for(int i = 1; i <= n; ++i)
        scanf("%d", v+i), sm += v[i];
    dp[0] = 1;
    for(int i = 1; i <= n; ++i)
        dp=dp|(dp<<v[i]);
    if(sm&1 or !dp[sm/2]){
        puts("0");
        return 0; // Tima's has no possible strengths
    }
    for(int i = 0; i <= sm; ++i)
        is[i] = 1;
    for(int ad = 1; ad <= n; ++ad){
        sm -= v[ad];
        dp.reset();
        dp[0] = 1;
        for(int i = 1; i < ad; ++i)
            dp=dp|(dp<<v[i]);
        for(int i = ad+1; i <= n; ++i)
            dp=dp|(dp<<v[i]);
        for(int i = 0; i <= sm; ++i)
            if(dp[i])
                x[ad].insert(abs(sm-2*i));
        sm += v[ad];
    }
    for(int ad = 1; ad <= n; ++ad)
        for(int i = 0; i <= sm; ++i){
            if(!is[i])
                continue;
            if(!x[ad].count(i))
                is[i] = 0;
        }
    vector<int> ans;
    for(int i = 0; i <= sm; ++i)
        if(is[i])
            ans.pb(i);
    printf("%d\n", (int)ans.size());
    for(auto i : ans)
        printf("%d ", i);
    puts("");
    return 0;
}

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

bootfall.cpp: In function 'int main()':
bootfall.cpp:22:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   22 |     freopen("file.txt", "r", stdin);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
bootfall.cpp:24:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   24 |     scanf("%d", &n);
      |     ~~~~~^~~~~~~~~~
bootfall.cpp:26:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   26 |         scanf("%d", v+i), sm += v[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...