結果
問題 | No.971 いたずらっ子 |
ユーザー | keymoon |
提出日時 | 2020-01-17 21:57:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,535 bytes |
コンパイル時間 | 2,065 ms |
コンパイル使用メモリ | 180,404 KB |
実行使用メモリ | 257,424 KB |
最終ジャッジ日時 | 2024-06-25 19:53:49 |
合計ジャッジ時間 | 19,837 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | WA | - |
testcase_03 | AC | 1,893 ms
257,192 KB |
testcase_04 | AC | 1,779 ms
242,332 KB |
testcase_05 | AC | 1,887 ms
257,056 KB |
testcase_06 | AC | 1,361 ms
199,948 KB |
testcase_07 | WA | - |
testcase_08 | AC | 450 ms
69,876 KB |
testcase_09 | AC | 425 ms
66,740 KB |
testcase_10 | AC | 12 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #define var auto using namespace std; using ll = long long; int main() { cin.tie(0); ios::sync_with_stdio(false); int h, w; cin >> h >> w; string map; for (size_t i = 0; i < h; i++) { string tmp; cin >> tmp; map += tmp; } vector<int> dists(h * w); for (int i = 0; i < h; i++) for (int j = 0; j < w; j++) { var id = i * w + j; dists[id] = i + j; } vector<vector<int>> graph(h * w, vector<int>()); for (int i = 0; i < h - 1; i++) for (int j = 0; j < w; j++) { var id = i * w + j; graph[id].push_back(id + w); graph[id + w].push_back(id); } for (int i = 0; i < h; i++) for (int j = 0; j < w - 1; j++) { var id = i * w + j; graph[id].push_back(id + 1); graph[id + 1].push_back(id); } vector<int> shortest(graph.size(), 1 << 30); priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> pqueue{}; pqueue.push(make_pair(0, 0)); while (!pqueue.empty()) { var item = pqueue.top(); pqueue.pop(); if (shortest[item.second] != 1 << 30) continue; shortest[item.second] = item.first; for(var&& elem : graph[item.second]) { if (shortest[elem] != 1 << 30) continue; pqueue.push(make_pair(item.first + 1 + (map[elem] == 'k' ? dists[elem] : 0), elem)); } } cout << shortest[h * w - 1] << endl; return 0; }