結果
| 問題 |
No.2401 Dirty Shoes and Stairs
|
| コンテスト | |
| ユーザー |
Haa
|
| 提出日時 | 2023-08-04 21:40:52 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 51 ms / 2,000 ms |
| コード長 | 741 bytes |
| コンパイル時間 | 1,621 ms |
| コンパイル使用メモリ | 168,332 KB |
| 実行使用メモリ | 6,784 KB |
| 最終ジャッジ日時 | 2024-10-14 19:39:11 |
| 合計ジャッジ時間 | 2,680 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
template<typename T> bool chmax(T& x, const T& y){return (x<y)?(x=y,true):false;};
template<typename T> bool chmin(T& x, const T& y){return (x>y)?(x=y,true):false;};
constexpr ll MOD=998244353;
constexpr ll INF=2e18;
int main(){
int n, m, l;
cin >> n;
cin >> m;
VI a(m); REP(i,m) cin >> a[i];
cin >> l;
VI b(l); REP(i,l) cin >> b[i];
VI f(n+1,0);
int x=0;
REP(i,m) f[x+=a[i]]=1;
REP(i,l) f[x-=b[i]]=1;
int ans=n+1;
REP(i,n+1) ans-=f[i];
cout << ans << endl;
return 0;
}
Haa