# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
558907 | Olympia | Brunhilda’s Birthday (BOI13_brunhilda) | C++17 | 1102 ms | 84832 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int M, Q; cin >> M >> Q;
vector<int> p(M);
for (int i = 0; i < M; i++) {
cin >> p[i];
}
int mx = 10000000;
int res[mx];
int lpf[mx];
for (int i = 0; i < mx; i++) {
lpf[i] = -1;
}
for (int j = 0; j < p.size(); j++) {
for (int i = p[j]; i < mx; i += p[j]) {
lpf[i] = j;
}
}
int dp[M];
multiset<int> ms;
for (int i = 0; i < M; i++) {
dp[i] = 0;
ms.insert(dp[i]);
}
for (int i = 1; i < mx; i++) {
int ans = 1e9;
if (lpf[i] == -1) {
ans = *ms.begin() + 1;
} else {
vector<int> invalid;
int x = i;
while (lpf[x] != -1) {
if (dp[lpf[x]] == *ms.begin()) {
invalid.push_back(lpf[x]);
ms.erase(ms.find(dp[lpf[x]]));
}
int a = p[lpf[x]];
while (x % a == 0) x /= a;
}
if (!ms.empty()) {
ans = *ms.begin() + 1;
}
for (int j: invalid) {
ms.insert(dp[j]);
}
for (int j: invalid) {
if (j >= 0 && j < (int)p.size()) {
ms.erase(ms.find(dp[j]));
dp[j] = ans;
ms.insert(dp[j]);
}
}
}
res[i] = ans;
}
while (Q--) {
int x;
cin >> x;
if (res[x] == (int)1e9) {
cout << "oo\n";
} else {
cout << res[x] << '\n';
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |