結果
問題 | No.956 Number of Unbalanced |
ユーザー | mtsd |
提出日時 | 2019-12-19 02:52:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,771 bytes |
コンパイル時間 | 1,423 ms |
コンパイル使用メモリ | 123,848 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-07-06 23:24:34 |
合計ジャッジ時間 | 11,369 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 20 ms
6,940 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <chrono> #include <climits> #include <cmath> #include <complex> #include <cstring> #include <deque> #include <functional> #include <iostream> #include <list> #include <map> #include <numeric> #include <queue> #include <random> #include <set> #include <stack> #include <unordered_map> #include <unordered_set> #include <vector> #include <cstdint> using namespace std; typedef long long ll; #define MP make_pair #define PB push_back #define inf 1000000007 #define mod 1000000007 #define rep(i,n) for(int i = 0; i < (int)(n); ++i) template<typename T> class BIT { private: int n; vector<T> bit; public: // 0_indexed で i 番目の要素に x を加える void add(int i, T x){ i++; while(i < n){ bit[i] += x, i += i & -i; } } // 0_indexed で [0,i] の要素の和(両閉区間!!) T sum(int i){ i++; T s = 0; while(i > 0){ s += bit[i], i -= i & -i; } return s; } BIT(){} //初期値がすべて0の場合 BIT(int sz) : n(sz+1), bit(n, 0){} BIT(vector<T>& v) : n((int)v.size()+1), bit(n, 0){ for(int i = 0; i < n-1; i++){ add(i,v[i]); } } void print(){ for(int i = 0; i < n-1; i++){ cout<<sum(i)-sum(i-1)<< " "; } cout<<endl; } //-1スタート void print_sum(){ for(int i = 0; i < n; i++){ cout<<sum(i-1)<<" "; } cout<<endl; } }; int main(){ int n; cin >> n; vector<int> a(n); vector<int> c(100001); rep(i,n){ cin >> a[i]; c[a[i]]++; } vector<pair<int,int> > p; rep(i,100001){ if(c[i]!=0){ p.push_back(MP(c[i],i)); } } ll sm = 0; sort(p.rbegin(),p.rend()); for(int z=0;z<p.size();z++){ int k = p[z].second; if(z<=10){ vector<int> d(n+1); rep(i,n){ if(a[i]==k){ d[i+1] = 1; }else{ d[i+1] = -1; } } int g = -1; for(int i=1;i<n;i++){ d[i+1] += d[i]; g = min(g,d[i+1]); } g = -g; int mx = 0; for(int i=0;i<=n;i++){ d[i] += g; mx = max(mx,d[i]); } BIT<int> bit(mx+1); for(int i=0;i<=n;i++){ sm += bit.sum(d[i]-1); bit.add(d[i],1); } }else{ vector<int> d; for(int i=0;i<n;i++){ if(a[i]==k){ d.push_back(i); } } int m = d.size(); for(int i=0;i<m;i++){ for(int j=i;j<m;j++){ int g = j-i+1; if(d[j]-d[i]+1 < 2*g){ int P = 2*g-1-(d[j]-d[i]+1); int L,R; if(i==0){ L = d[0]; }else{ L = d[i]-d[i-1]-1; } if(j==m-1){ R = n-1-d[j]; }else{ R = d[i+1]-d[i]-1; } if(R+L<=P){ sm += (R+1)*(L+1); }else{ sm += (P+2)*(P+1)/2; if(R<P){ sm -= (P-R+1)*(P-R)/2; } if(L<P){ sm -= (P-L+1)*(P-L)/2; } } } } } } } cout << sm << endl; return 0; }