結果

問題 No.1975 Zigzag Sequence
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-08-11 16:11:33
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 5,533 ms
コンパイル使用メモリ 315,580 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-04-29 08:05:47
合計ジャッジ時間 9,944 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 13 ms
5,376 KB
testcase_04 AC 6 ms
5,376 KB
testcase_05 AC 101 ms
5,376 KB
testcase_06 AC 72 ms
5,376 KB
testcase_07 AC 13 ms
5,376 KB
testcase_08 AC 63 ms
5,376 KB
testcase_09 AC 105 ms
6,144 KB
testcase_10 AC 71 ms
5,376 KB
testcase_11 AC 79 ms
5,376 KB
testcase_12 AC 18 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 66 ms
5,376 KB
testcase_19 AC 67 ms
5,376 KB
testcase_20 AC 82 ms
5,376 KB
testcase_21 AC 83 ms
5,376 KB
testcase_22 AC 117 ms
9,088 KB
testcase_23 AC 116 ms
9,088 KB
testcase_24 AC 116 ms
9,216 KB
testcase_25 AC 117 ms
9,088 KB
testcase_26 AC 103 ms
5,376 KB
testcase_27 AC 134 ms
6,656 KB
testcase_28 AC 118 ms
9,088 KB
testcase_29 AC 116 ms
9,088 KB
testcase_30 AC 119 ms
9,216 KB
testcase_31 AC 119 ms
9,088 KB
testcase_32 AC 69 ms
5,376 KB
testcase_33 AC 68 ms
5,376 KB
testcase_34 AC 100 ms
5,376 KB
testcase_35 AC 102 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int n;cin>>n;
  vc<int>v(n); rep(i,n)cin>>v[i];
  map<int,int>m;
  rep(i,n)m[v[i]]=0;
  int c=0;
  for(auto&[a,b]:m)b=c++;
  rep(i,n)v[i]=m[v[i]];
  fenwick_tree<mint>fw(c),fwx(c);
  mint ans=0;
  rep(i,n)fwx.add(v[i],mint(2).pow(n-i-1));
  rep(i,n){
    fwx.add(v[i],-mint(2).pow(n-i-1));
    ans+=fw.sum(0,v[i])*fwx.sum(0,v[i]);
    ans+=fw.sum(v[i]+1,c)*fwx.sum(v[i]+1,c);
    fw.add(v[i],mint(2).pow(i));
  }
  cout<<ans.val();
}
    
0