結果
問題 | No.2826 Earthwork |
ユーザー | achapi |
提出日時 | 2024-07-26 10:30:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,234 bytes |
コンパイル時間 | 2,858 ms |
コンパイル使用メモリ | 225,188 KB |
実行使用メモリ | 87,448 KB |
最終ジャッジ日時 | 2024-07-26 10:31:21 |
合計ジャッジ時間 | 26,048 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 399 ms
48,196 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 167 ms
20,940 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 28 ms
6,940 KB |
testcase_28 | WA | - |
testcase_29 | AC | 77 ms
9,856 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std;template<class T> vector<T> Dijkstra(vector<vector<pair<int, T>>> &G, int s){ vector<T> D(G.size(), 1e18); D[s] = 0; priority_queue<pair<T, int>, vector<pair<T, int>>, greater<pair<T, int>>> q; q.push(make_pair(0, s)); while (!q.empty()){ auto [d, u] = q.top(); q.pop(); if (D[u] < d){ continue; } for (auto [v, c] : G[u]){ d = D[u] + c; if (d < D[v]){ D[v] = d; q.push(make_pair(d, v)); } } } return D; } int main(){ int N; cin >> N; vector<vector<int>> H(N, vector<int>(N)); for (int i = 0; i < N; i++){ for (int j = 0; j < N; j++){ cin >> H[i][j]; } } vector<string> S(N); for (int i = 0; i < N; i++){ cin >> S[i]; } vector<vector<long long>> A(N - 1, vector<long long>(N)); for (int i = 0; i < N - 1; i++){ for (int j = 0; j < N; j++){ cin >> A[i][j]; } } vector<vector<long long>> B(N, vector<long long>(N - 1)); for (int i = 0; i < N; i++){ for (int j = 0; j < N - 1; j++){ cin >> B[i][j]; } } vector<vector<pair<int, long long>>> G(N * N + 1); for (int i = 0; i < N - 1; i++){ for (int j = 0; j < N; j++){ long long T = (H[i][j] + H[i + 1][j]) * (1 - (i + j) % 2 * 2); G[i * N + j].push_back(make_pair((i + 1) * N + j, abs(T) * A[i][j] + T)); G[(i + 1) * N + j].push_back(make_pair(i * N + j, abs(T) * A[i][j] - T)); } } for (int i = 0; i < N; i++){ for (int j = 0; j < N - 1; j++){ long long T = (H[i][j] + H[i][j + 1]) * (1 - (i + j) % 2 * 2); G[i * N + j].push_back(make_pair(i * N + j + 1, abs(T) * B[i][j] + T)); G[i * N + j + 1].push_back(make_pair(i * N + j, abs(T) * B[i][j] - T)); } } for (int i = 0; i < N; i++){ for (int j = 0; j < N; j++){ if (S[i][j] == '?'){ continue; } if (S[i][j] == '=' or ((S[i][j] == '-') ^ (i + j) % 2) == 0){ G[i * N + j].push_back(make_pair(N * N, 0)); } if (S[i][j] == '=' or ((S[i][j] == '-') ^ (i + j) % 2) == 1){ G[N * N].push_back(make_pair(i * N + j, 0)); } } } auto D = Dijkstra(G, N * N); int Q; cin >> Q; while (Q--){ int R, C; long long E; cin >> R >> C >> E; R--; C--; if (D[R * N + C] + H[R][C] >= E){ cout << "Yes" << endl; } else { cout << "No" << endl; } } }