Submission #1051962

#TimeUsernameProblemLanguageResultExecution timeMemory
1051962SamAndSoccer (JOI17_soccer)C++17
5 / 100
1471 ms28588 KiB
#include <bits/stdc++.h> using namespace std; #define m_p make_pair #define all(x) (x).begin(),(x).end() #define sz(x) ((int)(x).size()) #define fi first #define se second typedef long long ll; mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count()); mt19937 rnf(2106); const int N = 503; const int xx[4] = {0, 1, 0, -1}; const int yy[4] = {1, 0, -1, 0}; int n, m; int A, B, C; int k; int x[N], y[N]; bool cc[N][N]; struct ban { int x, y, z; ll d; ban(){} ban(int x, int y, int z, ll d) { this->x = x; this->y = y; this->z = z; this->d = d; } }; bool operator<(const ban& a, const ban& b) { return a.d > b.d; } bool c[N][N][4 + 1]; void solv() { cin >> n >> m; cin >> A >> B >> C; cin >> k; for (int i = 1; i <= k; ++i) { cin >> x[i] >> y[i]; cc[x[i]][y[i]] = true; } priority_queue<ban> q; q.push(ban(x[1], y[1], 4, 0)); while (!q.empty()) { ban t = q.top(); q.pop(); if (c[t.x][t.y][t.z]) continue; c[t.x][t.y][t.z] = true; if (t.x == x[k] && t.y == y[k]) { cout << t.d << "\n"; return; } int minu = N; for (int i = 0; i < 4; ++i) { int x = t.x; int y = t.y; while (1) { if (!(0 <= x && x <= n && 0 <= y && y <= m)) break; if (cc[x][y]) { minu = min(minu, abs(x - t.x) + abs(y - t.y)); break; } x += xx[i]; y += yy[i]; } } q.push(ban(t.x, t.y, 4, t.d + minu * 1LL * C)); if (t.z < 4) { ban h = t; h.x += xx[t.z]; h.y += yy[t.z]; h.d += A; if (0 <= h.x && h.x <= n && 0 <= h.y && h.y <= m) q.push(h); } else { for (int i = 0; i < 4; ++i) { ban h = t; h.x += xx[i]; h.y += yy[i]; h.d += C; if (0 <= h.x && h.x <= n && 0 <= h.y && h.y <= m) q.push(h); } for (int i = 0; i < 4; ++i) { ban h = t; h.d += B; h.z = i; q.push(h); } } } } int main() { #ifdef SOMETHING freopen("input.txt", "r", stdin); //freopen("output.txt", "w", stdout); #endif // SOMETHING ios_base::sync_with_stdio(false), cin.tie(0); int tt = 1; //cin >> tt; while (tt--) { solv(); } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...