結果

問題 No.694 square1001 and Permutation 3
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2020-06-09 21:50:14
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2,799 ms / 3,000 ms
コード長 1,886 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 173,524 KB
実行使用メモリ 55,936 KB
最終ジャッジ日時 2024-06-10 22:12:44
合計ジャッジ時間 15,749 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 823 ms
5,376 KB
testcase_08 AC 1,709 ms
15,232 KB
testcase_09 AC 2,799 ms
55,936 KB
testcase_10 AC 765 ms
5,376 KB
testcase_11 AC 2,609 ms
55,808 KB
testcase_12 AC 2,691 ms
55,936 KB
testcase_13 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2020.06.09 21:50:08
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

template< typename T >
struct BinaryIndexedTree {
    std::vector< T > data;
    BinaryIndexedTree(int sz) {
        data.assign(++sz, 0);
    }
    
    inline T sum(int k) {
        T ret = 0;
        for (++k; k > 0; k -= k & -k) ret += data[k];
        return (ret);
    }
    
    inline T sum(int left, int right) {
        return sum(right) - sum(left - 1);
    }
    
    
    inline void add(int k, T x) {
        for (++k; k < data.size(); k += k & -k) data[k] += x;
    }
    
    
    
    int get(ll k) {
        ++k;
        int res = 0;
        int N = 1; while (N < (int)data.size()) N *= 2;
        for (int i = N / 2; i > 0; i /= 2) {
            if (res + i < (int)data.size() && data[res + i] < k) {
                k = k - data[res + i];
                res = res + i;
            }
        }
        return res + 1;
    }
    void print() {
        std::cout << "[ ";
        for (int i = 0; i < data.size() - 1; i++) {
            std::cout << sum(i, i);
            if (i < data.size() - 2) cout << ", ";
        }
        std::cout << " ]" << endl;
    }
};
int main() {
    int n;cin >> n;
    vector<int> a(n);
    set<int> st;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        st.insert(a[i]);
    }
    BinaryIndexedTree<ll> bit(st.size());
    auto t = st.begin();
    map<int,int> mp;
    int k = 0;
    while(t != st.end()) {
        mp[(*t)] = k;
        k++;
        t++;
    }
    ll ans = 0;
    for (int i = 0; i < n; i++) {
        ans += bit.sum(mp[a[i]]+1,st.size()-1);
        bit.add(mp[a[i]], 1);
    }
    for (int i = 0; i < n; i++) {
        cout << ans << endl;
        ans -= bit.sum(mp[a[i]]-1);
        ans += bit.sum(mp[a[i]] + 1,st.size()-1);
    }
    return 0;
}
0