結果

問題 No.2453 Seat Allocation
ユーザー tentententen
提出日時 2024-04-03 14:18:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 532 ms / 2,000 ms
コード長 2,463 bytes
コンパイル時間 2,573 ms
コンパイル使用メモリ 79,168 KB
実行使用メモリ 65,108 KB
最終ジャッジ日時 2024-09-30 23:58:09
合計ジャッジ時間 11,431 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
49,732 KB
testcase_01 AC 52 ms
50,080 KB
testcase_02 AC 52 ms
49,884 KB
testcase_03 AC 52 ms
49,800 KB
testcase_04 AC 52 ms
50,408 KB
testcase_05 AC 486 ms
63,704 KB
testcase_06 AC 302 ms
58,020 KB
testcase_07 AC 229 ms
58,176 KB
testcase_08 AC 158 ms
54,308 KB
testcase_09 AC 479 ms
65,028 KB
testcase_10 AC 501 ms
64,900 KB
testcase_11 AC 532 ms
65,108 KB
testcase_12 AC 304 ms
58,300 KB
testcase_13 AC 327 ms
58,088 KB
testcase_14 AC 266 ms
58,168 KB
testcase_15 AC 341 ms
59,804 KB
testcase_16 AC 299 ms
56,108 KB
testcase_17 AC 53 ms
50,056 KB
testcase_18 AC 408 ms
61,976 KB
testcase_19 AC 453 ms
62,076 KB
testcase_20 AC 281 ms
56,620 KB
testcase_21 AC 328 ms
59,680 KB
testcase_22 AC 402 ms
61,732 KB
testcase_23 AC 53 ms
50,360 KB
testcase_24 AC 53 ms
49,996 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 m = sc.nextInt();
        List<Party> parties = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            parties.add(new Party(i, sc.nextInt()));
        }
        Party.base = new long[m + 1];
        for (int i = 0; i < m; i++) {
            Party.base[i] = sc.nextInt();
        }
        PriorityQueue<Party> queue = new PriorityQueue<>(parties);
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < m; i++) {
            Party x = queue.poll();
            sb.append(x).append("\n");
            x.add();
            queue.add(x);
        }
        System.out.print(sb);
    }
    
    static class Party implements Comparable<Party> {
        static long[] base;
        int idx;
        int value;
        int current;
        
        public Party(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
        
        public int compareTo(Party another) {
            int ans = Long.compare(another.value * base[current], value * base[another.current]);
            if (ans == 0) {
                return idx - another.idx;
            } else {
                return ans;
            }
        }
        
        public String toString() {
            return String.valueOf(idx + 1);
        }
        
        public void add() {
            current++;
        }
    }
}
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