結果

問題 No.1975 Zigzag Sequence
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-08-11 16:11:33
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 4,983 ms
コンパイル使用メモリ 316,180 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-11-18 09:42:46
合計ジャッジ時間 9,246 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 12 ms
6,820 KB
testcase_04 AC 6 ms
6,820 KB
testcase_05 AC 92 ms
6,816 KB
testcase_06 AC 68 ms
6,816 KB
testcase_07 AC 13 ms
6,816 KB
testcase_08 AC 58 ms
6,816 KB
testcase_09 AC 98 ms
6,820 KB
testcase_10 AC 66 ms
6,816 KB
testcase_11 AC 73 ms
6,820 KB
testcase_12 AC 17 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 62 ms
6,816 KB
testcase_19 AC 61 ms
6,816 KB
testcase_20 AC 75 ms
6,820 KB
testcase_21 AC 78 ms
6,816 KB
testcase_22 AC 106 ms
9,216 KB
testcase_23 AC 107 ms
9,216 KB
testcase_24 AC 108 ms
9,216 KB
testcase_25 AC 107 ms
9,216 KB
testcase_26 AC 95 ms
6,820 KB
testcase_27 AC 122 ms
6,820 KB
testcase_28 AC 108 ms
9,216 KB
testcase_29 AC 105 ms
9,088 KB
testcase_30 AC 112 ms
9,088 KB
testcase_31 AC 109 ms
9,216 KB
testcase_32 AC 64 ms
6,816 KB
testcase_33 AC 65 ms
6,816 KB
testcase_34 AC 92 ms
6,820 KB
testcase_35 AC 96 ms
6,816 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