結果

問題 No.2852 Yakitori Optimization Problem
ユーザー tentententen
提出日時 2024-08-26 17:01:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 881 ms / 2,000 ms
コード長 2,034 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 79,092 KB
実行使用メモリ 77,096 KB
最終ジャッジ日時 2024-08-26 17:01:20
合計ジャッジ時間 15,666 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 331 ms
60,312 KB
testcase_01 AC 654 ms
70,524 KB
testcase_02 AC 580 ms
66,036 KB
testcase_03 AC 880 ms
75,188 KB
testcase_04 AC 656 ms
67,036 KB
testcase_05 AC 342 ms
62,432 KB
testcase_06 AC 234 ms
56,604 KB
testcase_07 AC 656 ms
70,232 KB
testcase_08 AC 195 ms
56,076 KB
testcase_09 AC 843 ms
74,560 KB
testcase_10 AC 858 ms
70,688 KB
testcase_11 AC 840 ms
77,096 KB
testcase_12 AC 877 ms
76,640 KB
testcase_13 AC 860 ms
77,092 KB
testcase_14 AC 881 ms
70,452 KB
testcase_15 AC 793 ms
70,692 KB
testcase_16 AC 865 ms
76,900 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 k = sc.nextInt();
        long ans = 0;
        for (int i = 0; i < n; i++) {
            ans += sc.nextInt();
        }
        Bird[] birds = new Bird[n];
        for (int i = 0; i < n; i++) {
            birds[i] = new Bird(sc.nextInt());
        }
        for (int i = 0; i < n; i++) {
            birds[i].source = sc.nextInt();
        }
        Arrays.sort(birds);
        for (int i = 0; i < n; i++) {
            if (i < k) {
                ans += birds[i].salt;
            } else {
                ans += birds[i].source;
            }
        }
        System.out.println(ans);
    }
    
    static class Bird implements Comparable<Bird> {
        int salt;
        int source;
        
        public Bird(int salt) {
            this.salt = salt;
        }
        
        public int diff() {
            return salt - source;
        }
        
        public int compareTo(Bird another) {
            return another.diff() - diff();
        }
    }
}

class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");

    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