이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <cmath>
#include <functional>
#include <fstream>
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <set>
#include <map>
#include <list>
#include <time.h>
#include <math.h>
#include <random>
#include <deque>
#include <queue>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <cassert>
#include <bitset>
#include <sstream>
#include <chrono>
#include <cstring>
#include <numeric>
using namespace std;
const int INF = (int)1e9 + 7;
int n, k;
vector<vector<int>> g, ig;
vector<int> mn;
bool is;
void addedge(int from, int to)
{
g[from].push_back(to);
ig[to].push_back(from);
}
void init(int nn, int kk)
{
is = 0;
n = nn;
k = kk;
g.clear();
g.resize(n);
ig.clear();
ig.resize(n);
mn.clear();
mn.resize(n, +INF);
}
void upd(int a, int value)
{
if (is)
{
return;
}
if (value < mn[a])
{
mn[a] = value;
if (a < k && mn[a] <= a)
{
is = 1;
return;
}
for (auto& b : ig[a])
{
upd(b, mn[a]);
}
}
}
int add_teleporter(int from, int to)
{
addedge(from, to);
if (to < k)
{
upd(from, to);
}
else
{
upd(from, mn[to]);
}
if (is)
{
return 1;
}
return 0;
}
# | 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... |