# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
935188 | 2024-02-28T19:07:27 Z | MinaRagy06 | 벽 칠하기 (APIO20_paint) | C++17 | 1 ms | 2652 KB |
#include <bits/stdc++.h> #ifdef MINA #include "grader.cpp" #endif #include "paint.h" using namespace std; #define ll long long const int M = 50'005; vector<int> gud[2 * M + 5]; int minimumInstructions(int n, int m, int K, vector<int> a, vector<int> sz, vector<vector<int>> b) { vector<int> col[K]; for (int i = 0; i < m; i++) { for (auto j : b[i]) { col[j].push_back(i); } } vector<int> diff[n]; for (int i = 0; i < n; i++) { for (auto j : col[a[i]]) { gud[i - j + M].push_back(i); // diff[i].push_back(i - j); } // sort(diff[i].begin(), diff[i].end()); } int dp[n + 1]{}; dp[n] = 0; for (int i = n - 1; i > n - m; i--) { dp[i] = 1e9; } multiset<int> s; for (int i = n + m + 2; i <= n; i++) { s.insert(dp[i]); } for (int i = n - m; i >= 0; i--) { if (i + m + 1 <= n) { s.erase(s.find(dp[i + m + 1])); } s.insert(dp[i + 1]); dp[i] = 1e9; bool ok = 0; for (auto j : col[a[i]]) { bool ok2 = 1; int st = i + m - j; int s = lower_bound(gud[i - j + M].begin(), gud[i - j + M].end(), i) - gud[i - j + M].begin(); int e = lower_bound(gud[i - j + M].begin(), gud[i - j + M].end(), st - 1) - gud[i - j + M].begin(); ok2 &= e - s + 1 == st - i; ok2 &= e < gud[i - j + M].size() && gud[i - j + M][e] == st - 1 && gud[i - j + M][s] == i; if (st <= i + m - 1) { s = lower_bound(gud[st + M].begin(), gud[st + M].end(), st) - gud[st + M].begin(); e = lower_bound(gud[st + M].begin(), gud[st + M].end(), i + m - 1) - gud[st + M].begin(); ok2 &= e - s + 1 == i + m - st; ok2 &= e < gud[st + M].size() && gud[st + M][e] == i + m - 1 && gud[st + M][s] == st; } ok |= ok2; } if (ok) { dp[i] = *s.begin() + 1; } } if (dp[0] >= (int)1e9) return -1; return dp[0]; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 2652 KB | Output is correct |
2 | Correct | 1 ms | 2652 KB | Output is correct |
3 | Correct | 1 ms | 2648 KB | Output is correct |
4 | Correct | 1 ms | 2652 KB | Output is correct |
5 | Incorrect | 1 ms | 2652 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 2652 KB | Output is correct |
2 | Correct | 1 ms | 2652 KB | Output is correct |
3 | Correct | 1 ms | 2648 KB | Output is correct |
4 | Correct | 1 ms | 2652 KB | Output is correct |
5 | Incorrect | 1 ms | 2652 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 2652 KB | Output is correct |
2 | Correct | 1 ms | 2652 KB | Output is correct |
3 | Correct | 1 ms | 2648 KB | Output is correct |
4 | Correct | 1 ms | 2652 KB | Output is correct |
5 | Incorrect | 1 ms | 2652 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 2652 KB | Output is correct |
2 | Correct | 1 ms | 2652 KB | Output is correct |
3 | Correct | 1 ms | 2648 KB | Output is correct |
4 | Correct | 1 ms | 2652 KB | Output is correct |
5 | Incorrect | 1 ms | 2652 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 2652 KB | Output is correct |
2 | Correct | 1 ms | 2652 KB | Output is correct |
3 | Correct | 1 ms | 2648 KB | Output is correct |
4 | Correct | 1 ms | 2652 KB | Output is correct |
5 | Incorrect | 1 ms | 2652 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |