結果

問題 No.2015 Stair Counter
ユーザー startcppstartcpp
提出日時 2022-07-28 01:00:04
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 64,160 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-07-17 14:46:27
合計ジャッジ時間 3,237 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 39 ms
5,376 KB
testcase_02 AC 43 ms
5,376 KB
testcase_03 AC 45 ms
5,376 KB
testcase_04 AC 37 ms
5,376 KB
testcase_05 AC 34 ms
5,376 KB
testcase_06 AC 49 ms
5,376 KB
testcase_07 AC 49 ms
5,376 KB
testcase_08 AC 49 ms
5,376 KB
testcase_09 AC 27 ms
5,376 KB
testcase_10 AC 28 ms
5,376 KB
testcase_11 AC 31 ms
5,376 KB
testcase_12 AC 26 ms
5,376 KB
testcase_13 AC 27 ms
5,376 KB
testcase_14 AC 31 ms
5,376 KB
testcase_15 AC 37 ms
5,376 KB
testcase_16 AC 62 ms
6,144 KB
testcase_17 AC 26 ms
6,016 KB
testcase_18 AC 53 ms
5,760 KB
testcase_19 AC 64 ms
6,656 KB
testcase_20 AC 32 ms
6,528 KB
testcase_21 AC 37 ms
5,376 KB
testcase_22 AC 43 ms
5,376 KB
testcase_23 AC 47 ms
5,376 KB
testcase_24 AC 37 ms
5,376 KB
testcase_25 AC 38 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#define int long long
#define rep(i, n) for(i = 0; i < n; i++)
using namespace std;

int n, m;
int a[200001];
int b[200002];

bool solve() {
	int i;
	rep(i, n + 1) b[i] = 0;
	
	b[0] = m;
	rep(i, n) {
		int x = a[i + 1] - b[i + 1];
		if (x < 0 || x > b[i]) { return false; }
		b[i + 1] += x;
		b[i + 2] += b[i] - x;
	}
	
	for (i = 1; i <= n; i++) if (b[i] != a[i]) { return false; }
	return true;
}

signed main() {
	int t;
	cin >> t;
	while (t--) {
		cin >> n >> m;
		for (int i = 0; i < n; i++) cin >> a[i + 1];
		bool res = solve();
		if (res) cout << "Yes" << endl;
		else cout << "No" << endl;
	}
	return 0;
}
0