이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
typedef long long int llo;
#define mp make_pair
#define pb push_back
#define a first
#define b second
#define endl "\n"
llo n,a,b;
llo mi=10000000000000;
llo it[101];
void brute(llo ind,llo tot,llo orr,llo lev){
if(ind==n){
if(tot){
orr=orr|tot;
lev+=1;
}
if(lev>=a and lev<=b){
mi=min(mi,orr);
}
}
else{
brute(ind+1,0,orr|(tot+it[ind]),lev+1);
brute(ind+1,tot+it[ind],orr,lev);
}
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin>>n>>a>>b;
for(llo i=0;i<n;i++){
cin>>it[i];
}
brute(0,0,0,0);
cout<<mi<<endl;
return 0;
}
| # | 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... |