# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
964142 | LucaLucaM | 별자리 3 (JOI20_constellation3) | C++17 | 2 ms | 6492 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <algorithm>
#include <cassert>
#include <cstring>
#include <queue>
#warning That's not AS, that's my AS
typedef long long ll;
const int NMAX = 2e5;
const int DMAX = 40;
int L;
int mult[NMAX + 1][DMAX + 1];
std::vector<int> g[NMAX + 1];
int parent[NMAX + 1];
int Time[NMAX + 1];
int timer;
void bfs() {
std::queue<int> q;
q.push(1);
while (!q.empty()) {
int u = q.front();
q.pop();
Time[u] = ++timer;
std::vector<int> newG;
for (const auto &v : g[u]) {
if (!Time[v]) {
parent[v] = u;
newG.push_back(v);
q.push(v);
}
}
g[u] = newG;
}
}
int main() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(0);
std::cout.tie(0);
int n;
std::cin >> n >> L;
for (int i = 1; i < n; i++) {
int u, v;
std::cin >> u >> v;
g[u].push_back(v);
g[v].push_back(u);
}
bfs();
for (int i = 1; i <= n; i++) {
for (int j = 0; j <= DMAX; j++) {
mult[i][j] = 1;
}
}
for (int i = 1; i <= n; i++) {
int h;
std::cin >> h;
mult[i][0] = h;
}
int q;
std::cin >> q;
while (q--) {
int type;
std::cin >> type;
if (type == 1) {
int u, d, h;
std::cin >> u >> d >> h;
std::vector<std::pair<int, int>> ancestors;
int v = u;
while (d >= 0) {
mult[v][d] = (ll) mult[v][d] * h % L;
d--;
if (d >= 0) {
mult[v][d] = (ll) mult[v][d] * h % L;
}
if (v != 1) {
v = parent[v];
} else {
d--;
}
}
} else {
int u;
std::cin >> u;
std::vector<std::pair<int, int>> ancestors;
int v = u;
int answer = 1;
for (int i = 0; i <= DMAX && v != 0; i++) {
answer = (ll) answer * mult[v][i] % L;
v = parent[v];
}
std::cout << answer << '\n';
}
}
return 0;
}
컴파일 시 표준 에러 (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... |