結果

問題 No.1975 Zigzag Sequence
ユーザー renren_utsrenren_uts
提出日時 2022-06-16 10:59:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 2,166 bytes
コンパイル時間 1,284 ms
コンパイル使用メモリ 119,248 KB
実行使用メモリ 51,716 KB
最終ジャッジ日時 2024-10-06 03:35:07
合計ジャッジ時間 7,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
47,948 KB
testcase_01 AC 39 ms
47,948 KB
testcase_02 AC 39 ms
47,840 KB
testcase_03 AC 53 ms
47,528 KB
testcase_04 AC 44 ms
47,224 KB
testcase_05 AC 219 ms
50,952 KB
testcase_06 AC 177 ms
50,120 KB
testcase_07 AC 52 ms
47,556 KB
testcase_08 AC 109 ms
49,604 KB
testcase_09 AC 271 ms
50,476 KB
testcase_10 AC 170 ms
49,608 KB
testcase_11 AC 192 ms
50,444 KB
testcase_12 AC 56 ms
48,512 KB
testcase_13 AC 38 ms
47,944 KB
testcase_14 AC 39 ms
47,880 KB
testcase_15 AC 38 ms
47,944 KB
testcase_16 AC 38 ms
46,812 KB
testcase_17 AC 38 ms
47,932 KB
testcase_18 AC 97 ms
51,012 KB
testcase_19 AC 95 ms
51,016 KB
testcase_20 AC 203 ms
51,592 KB
testcase_21 AC 223 ms
51,716 KB
testcase_22 AC 140 ms
51,148 KB
testcase_23 AC 146 ms
51,144 KB
testcase_24 AC 156 ms
51,144 KB
testcase_25 AC 156 ms
51,092 KB
testcase_26 AC 195 ms
51,368 KB
testcase_27 AC 358 ms
51,468 KB
testcase_28 AC 149 ms
51,272 KB
testcase_29 AC 151 ms
51,108 KB
testcase_30 AC 150 ms
51,096 KB
testcase_31 AC 151 ms
51,148 KB
testcase_32 AC 101 ms
51,012 KB
testcase_33 AC 98 ms
51,076 KB
testcase_34 AC 251 ms
51,272 KB
testcase_35 AC 258 ms
51,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <cmath>
#include <vector>
#include <tuple>
#include <bitset>
#include <map>
#include <queue>
#include <time.h>
#include <utility>
#include <numeric>
#include <deque>
#include <cassert>
#include <sstream>
#include <cctype>
#include <unordered_map>
#include <algorithm>
#include <chrono>
#define ll long long
#include <time.h>
#define mod % 1000000007
#define rep(i,n) for(long long i = 0;i < n;i ++)
ll MAX = 5'000'000'000'000'000'000LL;
using namespace std;

ll A = 17;
ll A2 = 1LL<<17;

struct fenwick_tree{
  vector<vector<ll>> v;
  void start(){
    vector<ll> V(A2,0);
    rep(i,A)v.push_back(V);
  }
  void add(ll n,ll val){
    for(int i = 0;i < A;i ++){
      v[i][n>>i] += val;
    }
  }
  ll sum(ll n){
      n ++;
      ll s = 0;
      ll u = 0;
      ll d = A2;
      for(ll i = A-1;i >= 0;i --){
          ll m = (u+d)/2;
          if(m == n){
              s += v[i][u>>i];
              break;
          }
          if(m<n){
              s += v[i][u>>i];
              u = m;
          }
          if(m>n){
              d = m;
          }
      }
      return s;
  }
};

vector<ll> conv(vector<ll> a){
  auto b = a;
  sort(b.begin(),b.end());
  ll c = b.size();
  map<ll,ll> mp;
  for(int i = c-2;i >= 0;i --){
    if(b[i] == b[i+1])b.erase(b.begin()+i);
  }
  c = b.size();
  rep(i,c){
    mp[b[i]] = i+2;
  }
  rep(i,int(a.size())){
    a[i] = mp[a[i]];
  }
  return a;
}

int main(){
  vector<ll> exp;
  exp.push_back(1);
  rep(i,1000000)exp.push_back((exp[i]*2)mod);
  ll n;
  cin >> n;
  vector<ll> a(n);
  rep(i,n)cin >> a[i];
  a = conv(a);
  vector<ll> lup(n);
  vector<ll> ldown(n);
  fenwick_tree f;
  f.start();
  rep(i,n){
    lup[i] = (f.sum(A2-2)-f.sum(a[i])) mod;
    ldown[i] = f.sum(a[i]-1) mod;
    f.add(a[i],exp[i]);
  }
  vector<ll> rup(n);
  vector<ll> rdown(n);
  fenwick_tree g;
  g.start();
  rep(i,n){
    rup[n-1-i] = (g.sum(A2-2)-g.sum(a[n-1-i])) mod;
    rdown[n-1-i] = g.sum(a[n-1-i]-1) mod;
    g.add(a[n-1-i],exp[i]);
  }
  ll ans = 0;
  rep(i,n){
      ans += (rup[i]*lup[i]) mod;
      ans += (ldown[i]*rdown[i]) mod;
  }
  cout << ans mod << endl;
  
  
  return 0;
}
0