이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dungeons.h"
#include <bits/stdc++.h>
using namespace std;
#ifndef EVAL
#include "grader.cpp"
#endif
#define ll long long
struct node
{
ll strength;
ll defeat;
ll wrom;
ll lrom;
pair<int, ll> above[25];
pair<int, ll> below[25];
};
vector<node> g;
void init(int n, std::vector<int> s, std::vector<int> p, std::vector<int> w, std::vector<int> l)
{
g.resize(n + 1);
for (int i = 0; i < n; i++)
{
g[i].strength = s[i];
g[i].defeat = p[i];
g[i].lrom = l[i];
g[i].wrom = w[i];
g[i].above[0] = {w[i], s[i]};
g[i].below[0] = {l[i], p[i]};
}
fill(g[n].above, g[n].above + 25, make_pair(n, 0LL));
fill(g[n].below, g[n].below + 25, make_pair(n, 0LL));
for (int e = 1; e < 25; e++)
{
for (int i = 0; i < n; i++)
{
auto t = g[i].above[e - 1];
auto p = g[t.first].above[e - 1];
g[i].above[e] = {p.first, p.second + t.second};
t = g[i].below[e - 1];
p = g[t.first].below[e - 1];
g[i].below[e] = {p.first, p.second + t.second};
}
}
return;
}
long long simulate(int x, int z)
{
ll wstrength = g[0].strength;
ll str = z;
if (str < wstrength)
{
for (int i = 25 - 1; i >= 0; i--)
{
if (g[x].below[i].second + str < wstrength)
{
str += g[x].below[i].second;
x = g[x].below[i].first;
}
}
if (x == g.size() - 1)
return str;
str += g[x].defeat;
x = g[x].lrom;
if (x == g.size() - 1)
return str;
}
str += g[x].above[24].second;
return str;
}
컴파일 시 표준 에러 (stderr) 메시지
dungeons.cpp: In function 'long long int simulate(int, int)':
dungeons.cpp:66:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<node>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
66 | if (x == g.size() - 1)
| ~~^~~~~~~~~~~~~~~
dungeons.cpp:70:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<node>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
70 | if (x == g.size() - 1)
| ~~^~~~~~~~~~~~~~~
# | 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... |