結果

問題 No.742 にゃんにゃんにゃん 猫の挨拶
ユーザー poyompypoyompy
提出日時 2018-10-05 21:37:58
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 5 ms / 2,500 ms
コード長 483 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 25,880 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-02 17:48:28
合計ジャッジ時間 1,141 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 5 ms
4,376 KB
testcase_12 AC 5 ms
4,376 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <string.h>

int bit[30303];

void update(int k, int v) {
  k++;
  while (k < 30303) {
    bit[k] += v;
    k += k & -k;
  }
}

int query(int k) {
  k++;
  int res = 0;
  while (k > 0) {
    res += bit[k];
    k -= k & -k;
  }
  return res;
}

int main() {
  int n;
  scanf("%d", &n);
  long long ans = 0;
  for (int i = 0; i < n; i++) {
    int m;
    scanf("%d", &m);
    ans += i - query(m);
    update(m, 1);
  }
  printf("%lld\n", ans);
  return 0;
}
0