結果

問題 No.871 かえるのうた
ユーザー d_seid_sei
提出日時 2019-09-05 11:35:21
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 771 bytes
コンパイル時間 912 ms
コンパイル使用メモリ 85,896 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2025-01-03 03:21:21
合計ジャッジ時間 64,963 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 1 ms
10,496 KB
testcase_02 AC 1 ms
10,496 KB
testcase_03 AC 1 ms
10,624 KB
testcase_04 AC 1 ms
10,496 KB
testcase_05 AC 2 ms
10,624 KB
testcase_06 AC 1 ms
10,496 KB
testcase_07 AC 2 ms
10,624 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 13 ms
9,344 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,566 ms
10,496 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 2 ms
9,856 KB
testcase_23 AC 1 ms
10,240 KB
testcase_24 AC 1 ms
10,368 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1,025 ms
10,624 KB
testcase_28 AC 1 ms
10,368 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 31 ms
10,112 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 2 ms
5,248 KB
testcase_42 TLE -
testcase_43 AC 2 ms
5,248 KB
testcase_44 WA -
testcase_45 AC 74 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 1 ms
9,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include <vector>
#include<cmath>
#include<iomanip>
#include<queue>
using namespace std;
typedef long long int lont;
int main() {
	lont N, K;
	cin >> N >> K;
	vector<lont>veca(N);
	vector<lont>vecb(N);
	for (int ia = 0; ia < N; ia++) {
		cin >> veca.at(ia);
	}
	for (int ib = 0; ib < N; ib++) {
		cin >> vecb.at(ib);
	}
	vector<lont>vecc(N);
	vecc.at(K - 1)++;
	for(int ie=0;ie<10;ie++){
		for (int ic = 0; ic < N; ic++) {
			for (int id = 0; id < N; id++) {
				if (vecc.at(ic) &&
					veca.at(ic) - vecb.at(ic) <= veca.at(id) &&
					veca.at(id) <= veca.at(ic) + vecb.at(ic)) {
					vecc.at(id)++;
				}
			}
		}
		}
	int cnt = 0;
	for (int ih = 0; ih < N; ih++) {
		if (vecc.at(ih)) {
			cnt++;
		}
	}
	cout << cnt << endl;
}

	
0