結果

問題 No.742 にゃんにゃんにゃん 猫の挨拶
ユーザー potoooooooopotoooooooo
提出日時 2018-12-15 01:18:42
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 11 ms / 2,500 ms
コード長 598 bytes
コンパイル時間 1,544 ms
コンパイル使用メモリ 169,904 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-25 05:39:08
合計ジャッジ時間 2,437 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 11 ms
5,376 KB
testcase_12 AC 10 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

// one-based numbering
template<class T> struct Fenwick {
    vector<T> bit; int N;
    Fenwick(int n) {
      N = n;
      bit.resize(n+1, 0);
    }
    void add(int a, T w) {
      for (int x = a; x <= N; x += x & -x) bit[x] += w;
    }
    T sum(int a) {
      T ret = 0;
      for (int x = a; x > 0; x -= x & -x) ret += bit[x];
      return ret;
    }
};

int main() {
	int n; cin >> n;
	Fenwick<long long> f(n);
	long long ans = 0;
	for (int i = 0; i < n; i++) {
		int k; cin >> k;
		ans += i - f.sum(k);
		f.add(k, 1);
	}
	cout << ans << endl;
}
0