#include #include // cout, endl, cin #include // string, to_string, stoi #include // vector #include // min, max, swap, sort, reverse, lower_bound, upper_bound #include // pair, make_pair #include // tuple, make_tuple #include // int64_t, int*_t #include // printf #include // map #include // queue, priority_queue #include // set #include // stack #include // deque #include // unordered_map #include // unordered_set #include // bitset #include // isupper, islower, isdigit, toupper, tolower #include #include #include #include #include using namespace std; using namespace atcoder; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define repi(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep2(i, m, n) for (int i = (m); i < (n); ++i) #define drep2(i, m, n) for (int i = (m)-1; i >= (n); --i) #define drep(i, n) drep2(i, n, 0) //#define endl '\n' #define all(x) (x).begin(),(x).end() #define arr(x) (x).rbegin(),(x).rend() typedef long long ll; typedef unsigned long long ull; const ll inf=1e18; //const int inf=1e7; using graph = vector > ; using P= pair; using vi=vector; using vvi=vector; using vll=vector; using vvll=vector; using vp=vector

; using vvp=vector; using vd=vector; using vvd =vector; //string T="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; //string S="abcdefghijklmnopqrstuvwxyz"; //g++ main.cpp -std=c++17 -I . //cout < bool chmin(T& a, T b) { if (a > b) { a = b; return true; } else return false; } template bool chmax(T& a, T b) { if (a < b) { a = b; return true; } else return false; } struct edge{ int to; ll cost;int dir; edge(int to,ll cost,int dir) : to(to),cost(cost),dir(dir){} }; using ve=vector; using vve=vector; using mint = modint998244353; //using mint = modint1000000007; using vm=vector; using vvm=vector; const int mod = 998244353; //int mod = 1e9+7; constexpr ll MAX = 401000; ll fact[MAX],finv[MAX],inv[MAX]; void initcomb(){ fact[0]=fact[1]=1; finv[0]=finv[1]=1; inv[1]=1; for(int i=2;i par, siz; UnionFind(int n) : par(n, -1) , siz(n, 1) { } int root(int x) { if (par[x] == -1) return x; else return par[x] = root(par[x]); } bool issame(int x, int y) { return root(x) == root(y); } bool unite(int x, int y) { x = root(x), y = root(y); if (x == y) return false; //if (siz[x] < siz[y]) swap(x, y); par[y] = x; siz[x] += siz[y]; return true; } int size(int x) { return siz[root(x)]; } }; struct Compress{ vll a; map d,d2; int cnt; Compress() :cnt(0) {} void add(ll x){a.push_back(x);} void init(){ sets(a.begin(),a.end()); for(auto y:s)d[y]=cnt++; for(auto&y:a)y=d[y]; for(auto u:d)d2[u.second]=u.first; } ll to(ll x){return d[x];} //変換先 ll from(ll x){return d2[x];}//逆引き int size(){return cnt;} }; vll anss; void solve(int test){ int n,k,x,y; cin >> n >> k >> x >> y; vll a(n+3);repi(i,3,n+2+1)cin >> a[i],a[i]%=k; a[1]=x%k,a[2]=y%k; vvi g(k); repi(i,1,n+2+1)g[a[i]].push_back(i); vvll dp(n+3,vll(k,-inf)); vll dpmax(n+3,-inf); vll dprui(n+3,-inf); vvll dprui1(n+3,vll(k,-inf)); vvll dprui2(k,vll(k,-inf)); dpmax[0]=0; dprui[0]=0; dpmax[1]=0; dprui[1]=0; dpmax[2]=0; dprui[2]=0; dprui1[1][a[1]]=0; dprui1[2][a[1]]=0; dprui1[2][a[2]]=0; dprui2[a[1]][a[2]]=0; dprui2[a[2]][a[1]]=0; for(int i=3; i<=n+2; i++){ rep(x,k){ int y=(k-(x+a[i])%k)%k; if(x!=y){ int index=lower_bound(all(g[x]),i)-g[x].begin(); index--; int index2=lower_bound(all(g[y]),i)-g[y].begin(); index2--; if(index>=0 && index2>=0){ int prei=min(g[x][index],g[y][index2])-1; chmax(dp[i][x],dprui[prei]+1); } } else { int index=lower_bound(all(g[x]),i)-g[x].begin(); index-=2; if(index>=0){ int prei=g[x][index]-1; chmax(dp[i][x],dprui[prei]+1); } } } { rep(x,k){ int z=a[i]; int y=((k-x-z)%k+k)%k; int index=lower_bound(all(g[x]),i)-g[x].begin(); int index2=lower_bound(all(g[y]),i)-g[y].begin(); index2--; index--; if(index>=0){ int prei=g[x][index]-1; chmax(dp[i][x],dprui1[prei][y]+1); } if(index2>=0){ int prei=g[y][index2]-1; chmax(dp[i][x],dprui1[prei][x]+1); } } } { rep(x,k){ int z=a[i]; int y=((k-x-z)%k+k)%k; chmax(dp[i][x],dprui2[x][y]+1); chmax(dp[i][x],dprui2[y][x]+1); } } rep(x,k)chmax(dpmax[i],dp[i][x]); dprui[i]=max(dprui[i-1],dpmax[i]); { rep(x,k){ int z=a[i]; int y=((k-x-z)%k+k)%k; chmax(dprui1[i][x],dp[i][x]); chmax(dprui1[i][y],dp[i][x]); chmax(dprui1[i][z],dp[i][x]); chmax(dprui2[x][y],dp[i][x]); chmax(dprui2[x][z],dp[i][x]); chmax(dprui2[y][z],dp[i][x]); } rep(x,k)chmax(dprui1[i][x],dprui1[i-1][x]); } } ll ans=0; repi(i,1,n+3)chmax(ans,dpmax[i]); cout<< ans << endl; } //g++ main.cpp -std=c++17 -I . int main(){cin.tie(0);ios::sync_with_stdio(false); int t=1;//cin >>t; rep(test,t)solve(test); for(auto ans:anss)cout << ans << endl; }