結果

問題 No.694 square1001 and Permutation 3
ユーザー tentententen
提出日時 2023-06-15 17:15:06
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 3,165 bytes
コンパイル時間 2,737 ms
コンパイル使用メモリ 93,300 KB
実行使用メモリ 124,340 KB
最終ジャッジ日時 2023-09-05 21:01:58
合計ジャッジ時間 18,290 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
49,368 KB
testcase_01 AC 45 ms
47,420 KB
testcase_02 AC 45 ms
49,452 KB
testcase_03 AC 56 ms
50,908 KB
testcase_04 AC 62 ms
50,128 KB
testcase_05 AC 69 ms
51,400 KB
testcase_06 AC 67 ms
51,236 KB
testcase_07 AC 523 ms
75,288 KB
testcase_08 AC 1,710 ms
73,560 KB
testcase_09 TLE -
testcase_10 AC 541 ms
74,880 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 44 ms
49,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] values = new int[n];
        TreeMap<Integer, Integer> compress = new TreeMap<>();
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
            compress.put(values[i], null);
        }
        int idx = compress.size();
        for (int x : compress.keySet()) {
            compress.put(x, idx--);
        }
        BinaryIndexedTree bit = new BinaryIndexedTree(compress.size() + 1);
        long count = 0;
        for (int x : values) {
            int y = compress.get(x);
            count += bit.getSum(y - 1);
            bit.add(y, 1);
        }
        StringBuilder sb = new StringBuilder();
        sb.append(count).append("\n");
        for (int i = 0; i < n - 1; i++) {
            count -= n - bit.getSum(compress.get(values[i]));
            count += bit.getSum(compress.get(values[i]) - 1);
            sb.append(count).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;
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0