結果

問題 No.2650 [Cherry 6th Tune *] セイジャク
ユーザー tentententen
提出日時 2024-02-29 17:53:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,175 ms / 2,500 ms
コード長 2,203 bytes
コンパイル時間 2,961 ms
コンパイル使用メモリ 91,852 KB
実行使用メモリ 91,972 KB
最終ジャッジ日時 2024-09-29 12:48:04
合計ジャッジ時間 28,532 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
50,848 KB
testcase_01 AC 70 ms
50,780 KB
testcase_02 AC 487 ms
71,952 KB
testcase_03 AC 228 ms
56,896 KB
testcase_04 AC 513 ms
66,240 KB
testcase_05 AC 479 ms
66,112 KB
testcase_06 AC 360 ms
62,004 KB
testcase_07 AC 475 ms
63,092 KB
testcase_08 AC 348 ms
60,428 KB
testcase_09 AC 874 ms
84,944 KB
testcase_10 AC 860 ms
82,060 KB
testcase_11 AC 905 ms
85,684 KB
testcase_12 AC 828 ms
83,796 KB
testcase_13 AC 841 ms
83,900 KB
testcase_14 AC 846 ms
83,120 KB
testcase_15 AC 837 ms
82,916 KB
testcase_16 AC 1,175 ms
91,972 KB
testcase_17 AC 884 ms
82,292 KB
testcase_18 AC 851 ms
84,164 KB
testcase_19 AC 957 ms
84,020 KB
testcase_20 AC 913 ms
84,320 KB
testcase_21 AC 923 ms
84,916 KB
testcase_22 AC 928 ms
85,116 KB
testcase_23 AC 826 ms
85,784 KB
testcase_24 AC 846 ms
85,072 KB
testcase_25 AC 832 ms
84,632 KB
testcase_26 AC 802 ms
82,984 KB
testcase_27 AC 803 ms
83,140 KB
testcase_28 AC 841 ms
84,996 KB
testcase_29 AC 805 ms
83,872 KB
testcase_30 AC 850 ms
83,472 KB
testcase_31 AC 820 ms
83,352 KB
testcase_32 AC 701 ms
79,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int a = sc.nextInt();
        TreeMap<Integer, List<Integer>> places = new TreeMap<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (!places.containsKey(x)) {
                places.put(x, new ArrayList<>());
            }
            places.get(x).add(i);
        }
        int t = sc.nextInt();
        int[] lefts = new int[t];
        int[] rights = new int[t];
        for (int i = 0; i < t; i++) {
            lefts[i] = sc.nextInt();
            rights[i] = sc.nextInt();
        }
        int[] ans = new int[n];
        Arrays.fill(ans, -1);
        for (int i = t - 1; i >= 0; i--) {
            Integer key = lefts[i] - 1;
            while ((key = places.higherKey(key)) != null) {
                if (key > rights[i]) {
                    break;
                }
                for (int x : places.get(key)) {
                    ans[x] = i + 1;
                }
                places.remove(key);
            }
        }
        System.out.println(Arrays.stream(ans).mapToObj(String::valueOf).collect(Collectors.joining("\n")));
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0