結果

問題 No.694 square1001 and Permutation 3
ユーザー tentententen
提出日時 2021-03-10 12:57:13
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,711 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 79,908 KB
実行使用メモリ 137,760 KB
最終ジャッジ日時 2024-10-12 03:49:29
合計ジャッジ時間 14,483 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
61,024 KB
testcase_01 AC 141 ms
53,828 KB
testcase_02 AC 134 ms
53,808 KB
testcase_03 AC 170 ms
54,164 KB
testcase_04 AC 185 ms
54,512 KB
testcase_05 AC 189 ms
54,312 KB
testcase_06 AC 192 ms
54,364 KB
testcase_07 AC 1,324 ms
87,152 KB
testcase_08 AC 2,738 ms
100,144 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] arr = new int[n];
		long ans = 0;
		TreeMap<Integer, Integer> map = new TreeMap<>();
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		    map.put(arr[i], 0);
		}
		int idx = 1;
		for (int x : map.keySet()) {
		    map.put(x, idx);
		    idx++;
		}
		BinaryIndexedTree bit = new BinaryIndexedTree(idx);
		long total = 0;
		for (int i = 0; i < n; i++) {
		    total += bit.getSum(idx - 1) - bit.getSum(map.get(arr[i]));
		    bit.add(map.get(arr[i]), 1);
		}
		StringBuilder sb = new StringBuilder();
		sb.append(total).append("\n");
		for (int i = 0; i < n - 1; i++) {
		    total -= bit.getSum(map.get(arr[i]) - 1);
		    total += bit.getSum(idx - 1) - bit.getSum(map.get(arr[i]));
		    sb.append(total).append("\n");
		}
		System.out.print(sb);
	}
}

class BinaryIndexedTree {
    int size;
    int[] tree;
    
    public BinaryIndexedTree(int size) {
        this.size = size;
        tree = new int[size];
    }
    
    public void add(int idx, int value) {
        int mask = 1;
        while (idx < size) {
            if ((idx & mask) != 0) {
                tree[idx] += value;
                idx += mask;
            }
            mask <<= 1;
        }
    }
    
    public int getSum(int from, int to) {
        return getSum(to) - getSum(from - 1);
    }
    
    public int getSum(int x) {
        int mask = 1;
        int ans = 0;
        while (x > 0) {
            if ((x & mask) != 0) {
                ans += tree[x];
                x -= mask;
            }
            mask <<= 1;
        }
        return ans;
    }
}
0