結果

問題 No.216 FAC
ユーザー zaichuzaichu
提出日時 2015-12-18 01:16:44
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 487 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 59,360 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 00:44:02
合計ジャッジ時間 1,183 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

int main(){
	int n;
	cin >> n;
	vector<int> data1(n);
	vector<int> data2(n);
	vector<int> score(100);
	for(auto &a:data1) cin >> a;
	for(auto &b:data2) cin >> b;
	int count = 0;
	for(int i = 0; i < n; i++){
		if(data2[i] == 0) count += data1[i];
		else score[data2[i]] += data1[i];
	}
	for(int i = 0; i < n; i++){
		if(count < score[data2[i]]){
			cout << "NO" << endl;
			return 0;
		}
	}
	cout << "YES" << endl;
	return 0;
}
0