# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
433902 | JeanBombeur | 다리 (APIO19_bridges) | C++17 | 192 ms | 1204 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
using namespace std;
// <|°_°|>
const int INFINI = (1000 * 1000 * 1000);
const int MAX_NOEUDS = (100 * 1000);
const int TAILLE_ARBRE = (1 << 16);
int Tree[2 * TAILLE_ARBRE];
int nbNoeuds, nbAretes, nbRequetes;
void Set(int id, int val) {
id += TAILLE_ARBRE;
Tree[id] = val;
for (int i = id / 2; i > 0; i /= 2)
{
Tree[i] = min(Tree[2 * i], Tree[2 * i + 1]);
}
return;
}
int GetMin(int gauche, int droite) {
int ans = INFINI;
if (gauche > droite)
return ans;
if (gauche & 1)
ans = min(ans, Tree[gauche ++]);
if (!(droite & 1))
ans = min(ans, Tree[droite --]);
return min(ans, GetMin(gauche / 2, droite / 2));
}
void Read() {
scanf("%d %d", &nbNoeuds, &nbAretes);
for (int i = 0; i < nbAretes; i ++)
{
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
Tree[i + TAILLE_ARBRE] = c;
}
for (int i = TAILLE_ARBRE - 1; i > 0; i --)
{
Tree[i] = min(Tree[2 * i], Tree[2 * i + 1]);
}
return;
}
void Solve() {
scanf("%d", &nbRequetes);
for (int i = 0; i < nbRequetes; i ++)
{
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
b --;
if (a == 1)
Set(b, c);
else
{
int ans = 1;
int pos = b - 1;
for (int j = (1 << 15); j > 0; j /= 2)
{
if (pos + j < nbNoeuds && GetMin(pos + 1 + TAILLE_ARBRE, pos + j + TAILLE_ARBRE) >= c)
pos += j;
}
ans += pos - b + 1;
pos = b;
for (int j = (1 << 15); j > 0; j /= 2)
{
if (pos - j >= 0 && GetMin(pos - j + TAILLE_ARBRE, pos - 1 + TAILLE_ARBRE) >= c)
pos -= j;
}
ans += b - pos;
printf("%d\n", ans);
}
}
return;
}
int main() {
Read();
Solve();
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |