제출 #1086012

#제출 시각아이디문제언어결과실행 시간메모리
1086012RiverFlowRailway Trip 2 (JOI22_ho_t4)C++14
100 / 100
491 ms305812 KiB
#include <bits/stdc++.h> #define nl "\n" #define no "NO" #define yes "YES" #define fi first #define se second #define vec vector #define task "main" #define _mp make_pair #define ii pair<int, int> #define sz(x) (int)x.size() #define all(x) x.begin(), x.end() #define evoid(val) return void(std::cout << val) #define FOR(i, a, b) for(int i = (a); i <= (b); ++i) #define FOD(i, b, a) for(int i = (b); i >= (a); --i) #define unq(x) sort(all(x)); x.resize(unique(all(x)) - x.begin()) using namespace std; template<typename U, typename V> bool maxi(U &a, V b) { if (a < b) { a = b; return 1; } return 0; } template<typename U, typename V> bool mini(U &a, V b) { if (a > b or a == -1) { a = b; return 1; } return 0; } const int N = (int)2e5 + 9; const int mod = (int)1e9 + 7; void prepare(); void main_code(); int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); if (fopen(task".inp", "r")) { freopen(task".inp", "r", stdin); freopen(task".out", "w", stdout); } const bool MULTITEST = 0; prepare(); int num_test = 1; if (MULTITEST) cin >> num_test; while (num_test--) { main_code(); } } void prepare() {}; int n, k, m, q; int a[N], b[N]; pair<int, int> Q[N]; namespace SUB1 { const int N = 307; int d[N][N]; void sol() { memset(d, -1, sizeof d); FOR(i, 1, m) { if (a[i] < b[i]) { FOR(j, a[i], min(a[i] + k - 1, b[i] - 1)) FOR(t, j + 1, b[i]) d[j][t] = 1; } else { FOD(j, a[i], max(a[i] - k + 1, b[i] + 1)) FOD(t, j - 1, b[i]) d[j][t] = 1; } } FOR(k, 1, n) FOR(i, 1, n) if (d[i][k] != -1) FOR(j, 1, n) if (d[k][j] != -1) { mini(d[i][j], d[i][k] + d[k][j]); } FOR(i, 1, q) cout << d[Q[i].fi][Q[i].se] << nl; } }; int l[N], r[N], d[N]; vector<int> insmax[N], revmax[N], insmin[N], revmin[N]; void buildLR() { FOR(i, 1, n) l[i] = n + 1; FOR(i, 1, m) { if (a[i] < b[i]) { insmax[a[i]].push_back(b[i]); revmax[min(a[i] + k - 1, b[i] - 1)].push_back(b[i]); } else { insmin[a[i]].push_back(b[i]); revmin[max(a[i] - k + 1, b[i] + 1)].push_back(b[i]); } } multiset<int> v; FOR(i, 1, n) { for(int j : insmax[i]) { v.insert(j); } if (sz(v)) r[i] = *v.rbegin(); for(int j : revmax[i]) { v.erase(v.find(j)); } } FOD(i, n, 1) { for(int j : insmin[i]) { v.insert(j); } if (sz(v)) l[i] = *v.begin(); for(int j : revmin[i]) { v.erase(v.find(j)); } } } namespace SUB2 { void sol() { FOR(i, 1, q) { queue<int> f; int x = Q[i].fi, y = Q[i].se; int L = x, R = x; FOR(i, 1, n) d[i] = -1; d[x] = 0; f.push(x); while (!f.empty()) { int u = f.front(); f.pop(); if (u == y) break ; if (l[u] < L) { FOR(j, l[u], L - 1) { d[j] = d[u] + 1; f.push(j); } L = l[u]; } if (r[u] > R) { FOR(j, R + 1, r[u]) { d[j] = d[u] + 1; f.push(j); } R = r[u]; } } cout << d[y] << nl; } } }; namespace SUB_FULL { const int LG = 17; int lg[N]; pair<int, int> sp[N][LG + 1], f[LG + 1][N][LG + 1]; pair<int, int> combine(ii &a, ii &b) { return _mp(min(a.fi, b.fi), max(a.se, b.se)); } pair<int, int> get_combine(int l, int r, int p) { int j = lg[r - l + 1]; return combine(f[p][l][j], f[p][r - (1 << j) + 1][j]); } void sol() { FOR(i, 2, n) lg[i] = lg[i / 2] + 1; FOR(i, 1, n) { l[i] = min(l[i], i); r[i] = max(r[i], i); sp[i][0] = _mp(l[i], r[i]); } FOR(j, 0, LG) { FOR(i, 1, n) f[j][i][0] = sp[i][j]; FOR(k, 1, LG) if ( (1 << k) <= n ) FOR(i, 1, n) { f[j][i][k] = combine(f[j][i][k - 1], f[j][i + (1 << (k - 1))][k - 1]); } if (j == LG) break ; int k = j + 1; FOR(i, 1, n) { int L = sp[i][j].fi, R = sp[i][j].se; sp[i][j + 1] = get_combine(L, R, j); } } FOR(i, 1, q) { int x = Q[i].fi, y = Q[i].se; int ans = 0; int L = x, R = x; FOD(i, LG, 0) { auto P = get_combine(L, R, i); if (y < P.fi or y > P.se) { ans += (1 << i); L = P.fi, R = P.se; } } FOD(i, 0, 0) { auto P = get_combine(L, R, i); if (y < P.fi or y > P.se) { ans = -1; } else ++ans; } cout << ans << nl; } } }; void main_code() { cin >> n >> k >> m; for(int i = 1; i <= m; ++i) { cin >> a[i] >> b[i]; } cin >> q; for(int i = 1; i <= q; ++i) { cin >> Q[i].fi >> Q[i].se; } // if (n <= 300 and m <= 300) { // return SUB1::sol(), void(); // } buildLR(); // if (max(n, max(m, q)) <= 2000 or q == 1) { // return SUB2::sol(), void(); // } SUB_FULL::sol(); } /* Let the river flows naturally */

컴파일 시 표준 에러 (stderr) 메시지

Main.cpp: In function 'void SUB_FULL::sol()':
Main.cpp:178:13: warning: unused variable 'k' [-Wunused-variable]
  178 |         int k = j + 1;
      |             ^
Main.cpp: In function 'int main()':
Main.cpp:36:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   36 |         freopen(task".inp", "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:37:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   37 |         freopen(task".out", "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...