# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
670140 | SanguineChameleon | Bitaro’s Party (JOI18_bitaro) | C++11 | 776 ms | 281524 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// BEGIN BOILERPLATE CODE
#include <bits/stdc++.h>
using namespace std;
#ifdef KAMIRULEZ
const bool kami_loc = true;
const long long kami_seed = 69420;
#else
const bool kami_loc = false;
const long long kami_seed = chrono::steady_clock::now().time_since_epoch().count();
#endif
const string kami_fi = "kamirulez.inp";
const string kami_fo = "kamirulez.out";
mt19937_64 kami_gen(kami_seed);
long long rand_range(long long rmin, long long rmax) {
uniform_int_distribution<long long> rdist(rmin, rmax);
return rdist(kami_gen);
}
long double rand_real(long double rmin, long double rmax) {
uniform_real_distribution<long double> rdist(rmin, rmax);
return rdist(kami_gen);
}
void file_io(string fi, string fo) {
if (fi != "" && (!kami_loc || fi == kami_fi)) {
freopen(fi.c_str(), "r", stdin);
}
if (fo != "" && (!kami_loc || fo == kami_fo)) {
freopen(fo.c_str(), "w", stdout);
}
}
void set_up() {
if (kami_loc) {
file_io(kami_fi, kami_fo);
}
ios_base::sync_with_stdio(0);
cin.tie(0);
}
void just_do_it();
void just_exec_it() {
if (kami_loc) {
auto pstart = chrono::steady_clock::now();
just_do_it();
auto pend = chrono::steady_clock::now();
long long ptime = chrono::duration_cast<chrono::milliseconds>(pend - pstart).count();
string bar(50, '=');
cout << '\n' << bar << '\n';
cout << "Time: " << ptime << " ms" << '\n';
}
else {
just_do_it();
}
}
int main() {
set_up();
just_exec_it();
return 0;
}
// END BOILERPLATE CODE
// BEGIN MAIN CODE
const int ms = 1e5 + 20;
const int bl = 3e2 + 50;
vector<int> adj[ms];
pair<int, int> d[ms][bl];
int sz[ms];
pair<int, int> tmp[bl * 2];
int dp[ms];
namespace fmap {
int tz = 0;
int f[ms];
void clear() {
tz++;
}
bool find(int x) {
return f[x] == tz;
}
void insert(int x) {
f[x] = tz;
}
}
void just_do_it() {
int n, m, q;
cin >> n >> m >> q;
for (int i = 1; i <= n; i++) {
d[i][0] = {-1, i};
sz[i] = 1;
}
for (int i = 0; i < m; i++) {
int u, v;
cin >> u >> v;
if (u > v) {
swap(u, v);
}
adj[u].emplace_back(v);
}
for (int u = 1; u <= n; u++) {
for (int i = 0; i < sz[u]; i++) {
d[u][i].first++;
}
for (auto v: adj[u]) {
merge(d[u], d[u] + sz[u], d[v], d[v] + sz[v], tmp, greater<pair<int, int>>());
int z = sz[u] + sz[v];
sz[v] = 0;
fmap::clear();
for (int i = 0; i < z; i++) {
if (!fmap::find(tmp[i].second)) {
d[v][sz[v]++] = tmp[i];
if (sz[v] == bl) {
break;
}
fmap::insert(tmp[i].second);
}
}
}
}
for (int i = 0; i < q; i++) {
int u;
cin >> u;
int k;
cin >> k;
fmap::clear();
for (int j = 0; j < k; j++) {
int x;
cin >> x;
fmap::insert(x);
}
if (k < bl) {
int res = -1;
for (int j = 0; j < sz[u]; j++) {
if (!fmap::find(d[u][j].second)) {
res = d[u][j].first;
break;
}
}
cout << res << '\n';
}
else {
for (int j = 1; j <= n; j++) {
if (fmap::find(j)) {
dp[j] = -1;
}
else {
dp[j] = 0;
}
}
for (int j = 1; j <= n; j++) {
if (dp[j] == -1) {
continue;
}
for (auto v: adj[j]) {
dp[v] = max(dp[v], dp[j] + 1);
}
}
cout << dp[u] << '\n';
}
}
}
// END MAIN CODE
컴파일 시 표준 에러 (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... |