# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
317295 | soroush | Vudu (COCI15_vudu) | C++14 | 657 ms | 65540 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("O2")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
//#pragma GCC target("avx,avx2,sse,sse2,fma,tune=native")
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll ,ll > pii;
typedef long double ld;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
const ll maxn = 1e6+100;
const ll mod =1e9+7;
const ld PI = acos((ld)-1);
#define pb(x) push_back(x);
#define endl '\n'
#define dokme(x) return(cout << x , 0);
#define migmig ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define ms(x , y) memset(x , y , sizeof x);
#define file_init freopen("input.txt", "r+", stdin); freopen("output.txt", "w+", stdout);
ll pw(ll a, ll b, ll md = mod){ll res = 1;while(b){if(b&1){res=(a*res)%md;}a=(a*a)%md;b>>=1;}return(res);}
ll n , ans;
ll a[maxn] , p;
ll fen[maxn];
vector < ll > vec;
map < ll , ll > mp;
void update(ll x){
for(;x<=n ;x+=x&-x)
fen[x]++;
}
int get(ll pos){
ll ans = 0;
for(;pos;pos-=pos&-pos)
ans+=fen[pos];
return(ans);
}
int main(){
migmig
cin >> n;
for(int i = 1 ; i <= n ; i ++)
cin >> a[i];
cin >> p;
for(int i = 1 ; i <= n ; i ++)
a[i]-=p;
ll sum = 0;
for(int i = 1 ; i <= n ; i ++){
sum+=a[i];
vec.pb(sum);
}
sort(vec.begin() , vec.end());
ll cur = 0;
for(auto i : vec){
if(mp[i] == 0)mp[i] = ++cur;
}
vec.clear();
vec.resize(2);
swap(n , cur);
sum = 0;
for(int i = 1 ; i <= cur ; i ++){
sum+=a[i];
ans+=get(mp[sum]) + (sum>=0);
update(mp[sum]);
}
cout << ans;
return(0);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |