結果

問題 No.2065 Sum of Min
ユーザー tentententen
提出日時 2023-07-25 10:01:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 937 ms / 2,000 ms
コード長 3,750 bytes
コンパイル時間 3,066 ms
コンパイル使用メモリ 91,940 KB
実行使用メモリ 72,460 KB
最終ジャッジ日時 2024-04-10 03:07:37
合計ジャッジ時間 21,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
37,708 KB
testcase_01 AC 65 ms
37,796 KB
testcase_02 AC 67 ms
38,392 KB
testcase_03 AC 70 ms
38,412 KB
testcase_04 AC 826 ms
64,116 KB
testcase_05 AC 807 ms
63,780 KB
testcase_06 AC 732 ms
57,860 KB
testcase_07 AC 704 ms
63,508 KB
testcase_08 AC 804 ms
63,996 KB
testcase_09 AC 896 ms
60,288 KB
testcase_10 AC 867 ms
64,176 KB
testcase_11 AC 837 ms
64,792 KB
testcase_12 AC 869 ms
63,432 KB
testcase_13 AC 873 ms
64,484 KB
testcase_14 AC 872 ms
64,344 KB
testcase_15 AC 888 ms
64,508 KB
testcase_16 AC 872 ms
63,276 KB
testcase_17 AC 881 ms
64,152 KB
testcase_18 AC 937 ms
72,460 KB
testcase_19 AC 858 ms
64,684 KB
testcase_20 AC 858 ms
64,632 KB
testcase_21 AC 878 ms
64,476 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 q = sc.nextInt();
        BinaryIndexedTree counts = new BinaryIndexedTree(n + 1);
        PriorityQueue<Query> queue = new PriorityQueue<>();
        for (int i = 0; i < n; i++) {
            queue.add(new Query(i + 1, sc.nextInt()));
            counts.add(i + 1, 1);
        }
        for (int i = 0; i < q; i++) {
            queue.add(new Query(i, sc.nextInt(), sc.nextInt(), sc.nextInt()));
        }
        BinaryIndexedTree sums = new BinaryIndexedTree(n + 1);
        long[] ans = new long[q];
        while (queue.size() > 0) {
            Query x = queue.poll();
            if (x.left == 0) {
                counts.add(x.idx, -1);
                sums.add(x.idx, x.value);
            } else {
                ans[x.idx] = sums.getSum(x.left, x.right) + counts.getSum(x.left, x.right) * x.value;
            }
        }
        System.out.println(String.join("\n", Arrays.stream(ans).mapToObj(String::valueOf).toArray(String[]::new)));
    }
    
    static class Query implements Comparable<Query> {
        int idx;
        int left;
        int right;
        int value;
        
        public Query(int idx, int left, int right, int value) {
            this.idx = idx;
            this.left = left;
            this.right = right;
            this.value = value;
        }
        
        public Query(int idx, int value) {
            this(idx, 0, 0, value);
        }
        
        public int compareTo(Query another) {
            return value - another.value;
        }
    }
}
class BinaryIndexedTree {
    int size;
    long[] tree;
    
    public BinaryIndexedTree(int size) {
        this.size = size;
        tree = new long[size];
    }
    
    public void add(int idx, long value) {
        int mask = 1;
        while (idx < size) {
            if ((idx & mask) != 0) {
                tree[idx] += value;
                idx += mask;
            }
            mask <<= 1;
        }
    }
    
    public long getSum(int from, int to) {
        return getSum(to) - getSum(from - 1);
    }
    
    public long getSum(int x) {
        int mask = 1;
        long 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