結果
| 問題 |
No.216 FAC
|
| コンテスト | |
| ユーザー |
tntan
|
| 提出日時 | 2015-12-15 04:55:38 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 525 bytes |
| コンパイル時間 | 573 ms |
| コンパイル使用メモリ | 73,316 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-15 00:43:56 |
| 合計ジャッジ時間 | 1,337 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 24 |
ソースコード
#include<iostream>
#include<string>
#include<fstream>
#include<iomanip>
#include<vector>
#include<cctype>
#include<algorithm>
using namespace std;
static const int MAX_N = 1000005;
int main()
{
int n, a, b, t[101] = {};
vector<int>v, w;
cin >> n;
for (int i = 0; i < n; i++)
{
cin >> a;
v.push_back(a);
}
int sum = 0;
for (int i = 0; i < n; i++)
{
cin >> b;
if (b == 0)sum += v[i];
else t[b] += v[i];
}
sort(t, t + 101);
if (sum >= t[100])cout << "YES" << endl;
else cout << "NO" << endl;
return 0;
}
tntan