結果

問題 No.929 よくあるボールを移動するやつ
ユーザー tentententen
提出日時 2020-08-26 21:43:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 546 ms / 2,000 ms
コード長 1,095 bytes
コンパイル時間 2,369 ms
コンパイル使用メモリ 79,076 KB
実行使用メモリ 50,172 KB
最終ジャッジ日時 2024-04-25 04:02:50
合計ジャッジ時間 7,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,164 KB
testcase_01 AC 111 ms
41,216 KB
testcase_02 AC 107 ms
41,004 KB
testcase_03 AC 111 ms
41,252 KB
testcase_04 AC 100 ms
40,572 KB
testcase_05 AC 126 ms
41,576 KB
testcase_06 AC 140 ms
41,492 KB
testcase_07 AC 382 ms
47,628 KB
testcase_08 AC 505 ms
47,336 KB
testcase_09 AC 423 ms
47,252 KB
testcase_10 AC 461 ms
47,256 KB
testcase_11 AC 531 ms
48,476 KB
testcase_12 AC 513 ms
48,384 KB
testcase_13 AC 503 ms
47,880 KB
testcase_14 AC 454 ms
49,792 KB
testcase_15 AC 546 ms
50,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	TreeMap<Integer, Integer> stock = new TreeMap<>();
    	ArrayDeque<Integer> zeros = new ArrayDeque<>();
    	long total = 0;
    	for (int i = 0; i < n; i++) {
    	    int x = sc.nextInt();
    	    if (x == 0) {
    	        if (stock.size() == 0) {
    	            zeros.push(i);
    	        } else {
    	            int key = stock.lastKey();
    	            total += i - key;
    	            if (stock.get(key) == 1) {
    	                stock.remove(key);
    	            } else {
    	                stock.put(key, stock.get(key) - 1);
    	            }
    	        } 
    	    } else if (x > 1) {
    	        for (int j = 1; j < x; j++) {
    	            if (zeros.size() == 0) {
    	                stock.put(i, x - j);
    	                break;
    	            } else {
    	                total += i - zeros.pop();
    	            }
    	        }
    	    }
    	}
    	System.out.println(total);
    }
}

0