結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー PAKACHUPAKACHU
提出日時 2023-08-04 21:40:51
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 6,866 ms
コンパイル使用メモリ 140,384 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 19:39:07
合計ジャッジ時間 2,915 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<string>
#include<map>
#include<queue>
#include<set>
#include<deque>
#include<cmath>
#include<algorithm>
#include<functional>
#include<stack>
#include<tuple>
#include<bitset>
typedef long long ll;
using namespace std;

int main() {
	int n;
	cin >> n;
	vector<bool> used(n + 1);
	used[0] = 1;
	int m1; cin >> m1;
	int pos = 0;
	for (int i = 0; i < m1; i++) {
		int a; cin >> a;
		pos += a;
		used[pos] = true;
	}

	int m2; cin >> m2;
	for (int i = 0; i < m2; i++) {
		int a; cin >> a;
		pos -= a;
		used[pos] = true;
	}

	int ans = 0;
	for (int i = 0; i < n; i++)if (!used[i])ans++;
	cout << ans << endl;
}
0