結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
39,840 KB
testcase_01 AC 127 ms
40,840 KB
testcase_02 AC 129 ms
41,308 KB
testcase_03 AC 129 ms
41,336 KB
testcase_04 AC 126 ms
40,916 KB
testcase_05 AC 118 ms
40,576 KB
testcase_06 AC 147 ms
41,260 KB
testcase_07 AC 407 ms
47,684 KB
testcase_08 AC 558 ms
47,092 KB
testcase_09 AC 593 ms
47,276 KB
testcase_10 AC 584 ms
47,812 KB
testcase_11 AC 557 ms
48,384 KB
testcase_12 AC 587 ms
47,744 KB
testcase_13 AC 525 ms
47,912 KB
testcase_14 AC 570 ms
50,620 KB
testcase_15 AC 611 ms
49,680 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