# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
527663 | colazcy | Vudu (COCI15_vudu) | C++11 | 221 ms | 37312 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <algorithm>
#include <utility>
#include <cassert>
#define let const auto
#define rep(name,beg,end) for(auto lim_##name = end,name = beg;name <= lim_##name;name++)
#define per(name,beg,end) for(auto lim_##name = end,name = beg;name >= lim_##name;name--)
#define repn(lim) for(auto REPN_LIM = lim,REPN = 1;REPN <= REPN_LIM;REPN++)
#define debug(...) fprintf(stderr,__VA_ARGS__)
#define trace() debug("Line : %d, Function : %s\n",__LINE__,__FUNCTION__)
using ll = long long;
constexpr int maxn = 1e6 + 10;
int n,p;
ll sum[maxn],ans;
std::pair<ll,int> pir[maxn];
namespace fenwick{
int f[maxn];
constexpr int lowbit(const int x){return x & (-x);}
void add(int pos,const int v){
while(pos <= n + 1){
f[pos] += v;
pos += lowbit(pos);
}
}
int query(int pos){
int res = 0;
while(pos){
res += f[pos];
pos -= lowbit(pos);
}
return res;
}
}
int main(){
// std::freopen("vudu.in","r",stdin);
// std::freopen("vudu.out","w",stdout);
std::scanf("%d",&n);
rep(i,1,n)std::scanf("%lld",sum + i),sum[i] += sum[i - 1];
std::scanf("%d",&p);
rep(i,0,n)
pir[i].first = sum[i] - 1ll * p * i,
pir[i].second = i;
std::sort(pir,pir + n + 1);
rep(i,0,n){
ans += fenwick::query(pir[i].second + 1);
fenwick::add(pir[i].second + 1,1);
}
std::printf("%lld\n",ans);
std::fclose(stdin);
std::fclose(stdout);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |