#include using namespace std; using ll=long long; using pll=pair; using tll=tuple; using ld=long double; const ll INF=(1ll<<60); #define rep(i,n) for(ll i=0;i<(ll)(n);i++) #define all(v) v.begin(),v.end() template void chmin(T &a,T b){ if(a>b){ a=b; } } template void chmax(T &a,T b){ if(a> n; vector a(n); vector cnt(3,0); rep(i,n){ cin >> a[i]; cnt[a[i]]++; } if(n<=6){ vector v(n); rep(i,n) v[i]=i; do{ vector b(n,0); rep(i,n){ ll x=(i-1+n)%n,y=(i+1)%n; if(v[i]> t; while(t--){ solve(); } }