이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define nn "\n";
#define pb push_back
#define all(v) (v).begin() , (v).end()
const int N = 2e4+ 4;
int n , T , q , m ;
signed main(){
ios_base::sync_with_stdio(0) , cin.tie(0);
cin>> T;
while(T--){
cin>> n ;
int a[n+1];
set<int>st;
for(int i=1 ; i <= n; i++){
cin>> a[i];
}
map<int , int >us;
for(int i =1 ; i < n ; i++){
for(int j = i+1 ; j <= n; j++){
vector<int>v;
int sum =0 ;
for(int u = i ; u <= j ; u++){
v.pb(a[u]);
sum+=a[u];
}
int x = sum/2;
sort(all(v));
int ans =0 ;
for(int i= v.size() - 1 ; i >= 0 ; i--){
if(ans + v[i] <= x ){
ans+=v[i];
}
if(ans==x)break;
}
if(ans == x && sum - x ==x ){
us[v.size()]++;
}
}
}
vector<int>way;
for(int i =1 ;i <= n ; i++){
if(us[i]== n - i + 1 ){
way.pb(i);
}
}
cout << way.size()<< ' ';
for(auto it:way)cout <<it << ' ';
cout << nn
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |