結果
問題 | No.694 square1001 and Permutation 3 |
ユーザー | どらら |
提出日時 | 2018-06-08 23:26:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,337 bytes |
コンパイル時間 | 1,812 ms |
コンパイル使用メモリ | 178,724 KB |
実行使用メモリ | 55,260 KB |
最終ジャッジ日時 | 2024-06-30 11:06:27 |
合計ジャッジ時間 | 10,261 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; struct FenwickTree{ static const int SIZE = 1<<17; int n, tree[SIZE+1]; public: FenwickTree(int n_){ n = n_; for(int i=0; i<n+1; i++) tree[i] = 0; } void add(int i, int value){ for(; i<n; i|=i+1) tree[i] += value; } int sum(int i){ int s = 0; for(; i>=0; i=(i&i+1)-1) s += tree[i]; return s; } }; int main(){ int N; cin >> N; vector<int> A; map<int,int> mm, mp; rep(i,N){ int a; cin >> a; A.push_back(a); if(mm.count(a) == 0){ mm[a] = 1; } } int cnt = 0; FOR(it,mm){ mp[it->first] = cnt++; } vector<int> B; rep(i,N){ B.push_back(mp[A[i]]); } FenwickTree ft(N+10); ll sum = N * (ll)(N-1) / 2LL; ll ret = 0; rep(j,N){ int tmp = ft.sum(B[j]); ret -= tmp; ft.add(B[j], 1); } cout << sum - ret << endl; rep(j,N-1){ ft.add(B[j], -1); ll tmp1 = ft.sum(B[j]); ll tmp2 = ft.sum(N+5) - ft.sum(B[j]); ret += tmp2 - tmp1; cout << sum - ret << endl; ft.add(B[j], 1); } return 0; }