結果

問題 No.929 よくあるボールを移動するやつ
ユーザー 沙耶花沙耶花
提出日時 2019-11-22 21:58:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 17 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 1,435 ms
コンパイル使用メモリ 167,244 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-19 11:18:47
合計ジャッジ時間 2,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 8 ms
6,940 KB
testcase_08 AC 16 ms
6,940 KB
testcase_09 AC 17 ms
6,940 KB
testcase_10 AC 14 ms
6,940 KB
testcase_11 AC 15 ms
6,944 KB
testcase_12 AC 15 ms
6,940 KB
testcase_13 AC 15 ms
6,940 KB
testcase_14 AC 15 ms
6,944 KB
testcase_15 AC 15 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 1000000000

int main(){
	
	int N;
	cin>>N;
	vector<int> B(N);
	
	vector<int> ind(0);
	
	for(int i=0;i<N;i++){
		cin>>B[i];
		if(B[i]>1)ind.push_back(i);
	}
	
	reverse(ind.begin(),ind.end());
	
	long long ans = 0;
	
	for(int i=0;i<N;i++){
		if(B[i]!=0)continue;
		
		B[i] = 1;
		int j = ind.back();
		ans += (long long)abs(j-i);
		B[j]--;
		if(B[j]==1)ind.pop_back();
		
	}
	
	cout<<ans<<endl;
	
	
	
	return 0;
	
}
0