Submission #200881

#TimeUsernameProblemLanguageResultExecution timeMemory
200881balbitRope (JOI17_rope)C++14
55 / 100
2542 ms187128 KiB
#include <bits/stdc++.h> using namespace std; #define ll long long #define pii pair<int, int> #define ull unsigned ll #define f first #define s second #define FOR(i,a,b) for (int i=(a); i<(b); ++i) #define REP(i,n) FOR(i,0,n) #define RREP(i,n) for (int i=(n-1); i>=0; --i) #define REP1(i,n) FOR(i,1,n+1) #define ALL(x) x.begin(),x.end() #define SZ(x) (int)x.size() #define SQ(x) (x)*(x) #define MN(a,b) a = min(a,(__typeof__(a))(b)) #define MX(a,b) a = max(a,(__typeof__(a))(b)) #define pb push_back #define SORT_UNIQUE(c) (sort(c.begin(),c.end()), c.resize(distance(c.begin(),unique(c.begin(),c.end())))) #ifdef BALBIT #define IOS() #define bug(...) fprintf(stderr,"#%d (%s) = ",__LINE__,#__VA_ARGS__),_do(__VA_ARGS__); template<typename T> void _do(T &&x){cerr<<x<<endl;} template<typename T, typename ...S> void _do(T &&x, S &&...y){cerr<<x<<", ";_do(y...);} #else #define IOS() ios_base::sync_with_stdio(0);cin.tie(0); #define endl '\n' #define bug(...) #endif const int iinf = 1<<29; const ll inf = 1ll<<60; const ll mod = 1e9+7; void GG(){cout<<"-1\n"; exit(0);} ll mpow(ll a, ll n, ll mo = mod){ // a^n % mod ll re=1; while (n>0){ if (n&1) re = re*a %mo; a = a*a %mo; n>>=1; } return re; } ll inv (ll b){ return b==1?1:(mod-mod/b) * inv(mod%b) % mod; } const int maxn = 1e6+5; int ans[maxn]; map<int, int> t1[maxn], t2[maxn]; int nof[maxn], A[maxn]; signed main(){ IOS(); int n;cin>>n; int m; cin>>m; REP(i,n) { cin>>A[i]; A[i]--; nof[A[i]]++; if (i==0 || A[i] == A[i-1]) continue; if (i%2==0){ t2[A[i-1]][A[i]]++; t2[A[i]][A[i-1]]++; }else{ t1[A[i-1]][A[i]]++; t1[A[i]][A[i-1]]++; } } vector<pii> vn; REP(i,m){ vn.pb({nof[i],i}); } sort(ALL(vn),greater<pii>()); int cnt = 0; REP(i,m){ if (cnt > 3e6) assert(0); ans[i] = n-nof[i]; REP(it, m){ int j = vn[it].s; cnt ++; if (j == i) continue; if (t1[i].count(j) && t2[i].count(j)) { MN(ans[i],n-nof[i]-nof[j]+min(t1[i][j],t2[i][j])); }else{ MN(ans[i],n-nof[i]-nof[j]); bug("OUT"); break; } } cout<<ans[i]<<endl; } // Check your array bounds! // Think about corner cases (smallest or biggest?) }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...