이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
ID: didarco1
LANG: C++17
TASK:
*/
// a >> b = a / pow(2,b)
// a << b = a * pow(2,b)
#include <bits/stdc++.h>
#define ll long long int
#define pb push_back
#define sz size()
#define ss second
#define ff first
#define N 200001
#define pii pair<int,int>
using namespace std;
//ll _, x, n;
vector<int> find_subset(int l, int u, vector<int> w){
int x = w[0], uly = 0, kici = 0, den = 0, sum = 0, n = w.sz;
vector<int> result;
result.resize(n);
for(int i = 1; i < n; i++){
if(w[i] == x + 1) uly++;
else if(w[i] == x - 1) kici++;
else if(w[i] == x) den++;
}
if(den + 1 == n){
for(int i = 0; i < n; i++){
sum += w[i];
result[i] = i;
if(sum >= l and sum <= u) return result;
}
for(int i = 0; i < n; i++) result[i] = 0;
return result;
}
return result;
}
# | 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... |