# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
257081 | uacoder123 | Vudu (COCI15_vudu) | C++14 | 714 ms | 65540 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
using namespace __gnu_pbds;
#define F first
#define S second
#define FOR(i,a,b) for (auto i = (a); i <= (b); ++i)
#define NFOR(i,a,b) for(auto i = (a); i >= (b); --i)
#define all(x) (x).begin(), (x).end()
#define sz(x) int(x.size())
#define mp(i,a) make_pair(i,a)
#define pb(a) push_back(a)
#define bit(x,b) (x&(1LL<<b))
typedef long long int lli;
typedef pair <lli,lli> ii;
typedef pair <lli,ii> iii;
typedef vector <lli> vi;
typedef tree<ii,null_type,less<ii>,rb_tree_tag,tree_order_statistics_node_update> ordered_set;
ordered_set se;
lli arr[1000001];
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
lli n,k,co=0,cs=1,ans=0;
cin>>n;
for(lli i=0;i<n;++i)
cin>>arr[i];
cin>>k;
for(lli i=0;i<n;++i)
{
arr[i]-=k;
cs+=arr[i];
se.insert(mp(arr[i]-cs,co));
ans+=se.size()-se.order_of_key(mp(-cs,0*1LL));
co++;
}
cout<<ans<<endl;
return(0);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |