# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
685233 | tolbi | Bootfall (IZhO17_bootfall) | C++17 | 128 ms | 8148 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma optimize("Bismillahirrahmanirrahim")
//█▀█─█──█──█▀█─█─█
//█▄█─█──█──█▄█─█■█
//█─█─█▄─█▄─█─█─█─█
//Allahuekber
//ahmet23 orz...
//FatihSultanMehmedHan
//YavuzSultanSelimHan
//AbdulhamidHan
//Sani buyuk Osman Pasa Plevneden cikmam diyor.
#define author tolbi
#include<bits/stdc++.h>
#define endl '\n'
#define int short
#define deci(x) int x;cin>>x;
#define decstr(x) string x;cin>>x;
#define vint(x) vector<int> x
#define cinarr(x) for (auto &it : x) cin>>it;
#define coutarr(x) for (auto &it : x) cout<<it<<" ";cout<<endl;
#define sortarr(x) sort(x.begin(), x.end())
#define sortrarr(x) sort(x.rbegin(), x.rend())
#define revarr(x) reverse(x.begin(), x.end())
#define tol(bi) (1LL<<((int)(bi)))
#define INF LONG_LONG_MAX
using namespace std;
mt19937 ayahya(chrono::high_resolution_clock().now().time_since_epoch().count());
const int MOD = 1e9+7;
int32_t main(){
int T=1;
int tno=0;
if (!T) cin>>T;
while (T-(tno++)){
deci(n);
vint(arr(n));
cinarr(arr);
int somma = 0; for (int i = 0; i < n; i++) somma+=arr[i];
vector<vector<vector<bitset<350>>>> dp(2,vector<vector<bitset<350>>>(somma+1,vector<bitset<350>>(2)));
for (int i = 0; i < n; ++i)
{
dp[0][0][1][i]=true;
}
bitset<350> bos;
for (int node = 1; node <= n; node++){
for (int crr = 0; crr <= somma; crr++){
for (int flag = 0; flag < 2; flag++){
dp[1][crr][flag]&=bos;
if (!flag){
dp[1][crr][flag][node-1]=true;
dp[1][crr][flag]&=dp[0][crr][1];
}
if (abs(crr-arr[node-1])<=somma) dp[1][crr][flag]|=dp[0][abs(crr-arr[node-1])][flag];
if (abs(crr+arr[node-1])<=somma) dp[1][crr][flag]|=dp[0][abs(crr+arr[node-1])][flag];
}
}
swap(dp[0],dp[1]);
}
if (dp[0][0][1].count()==0){
cout<<0<<endl;
continue;
}
vector<int> say;
for (int i = 1; i < somma; i++){
if (dp[0][i][0].count()==n){
say.push_back(i);
}
}
cout<<say.size()<<endl;
coutarr(say);
}
}
컴파일 시 표준 에러 (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... |