Submission #205667

#TimeUsernameProblemLanguageResultExecution timeMemory
205667KastandaRope (JOI17_rope)C++11
0 / 100
33 ms47352 KiB
// In The Name Of The Queen #include<bits/stdc++.h> #define x first #define y second using namespace std; const int N = 1000006; int n, m, A[N], C[N], S[N * 2]; vector < int > V[N][2]; inline void Add(int i, int val) { S[i += N] = val; for (; i; i >>= 1) S[i >> 1] = max(S[i], S[i ^ 1]); } int main() { scanf("%d%d", &n, &m); for (int i = 1; i <= n; i ++) { scanf("%d", &A[i]); C[A[i]] ++; for (int j = 0; j <= 1; j ++) { int nxt = i + 1 - (i ^ j & 1) * 2; if (A[nxt] && A[nxt] != A[i]) V[A[i]][j].push_back(A[nxt]); } Add(A[i], 1); } for (int c = 1; c <= m; c ++) { int Mn = n - C[c]; Add(c, -C[c]); for (int j = 0; j <= 1; j ++) { for (int a : V[c][j]) Add(a, -1); Mn = min(Mn, n - C[c] - S[1]); for (int a : V[c][j]) Add(a, 1); } Add(c, C[c]); printf("%d\n", Mn); } return 0; }

Compilation message (stderr)

rope.cpp: In function 'int main()':
rope.cpp:24:38: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
             int nxt = i + 1 - (i ^ j & 1) * 2;
                                    ~~^~~
rope.cpp:17:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d", &n, &m);
     ~~~~~^~~~~~~~~~~~~~~~
rope.cpp:20:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &A[i]);
         ~~~~~^~~~~~~~~~~~~
#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...