結果
問題 | No.340 雪の足跡 |
ユーザー | n_knuu |
提出日時 | 2016-02-07 10:16:01 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 852 ms / 1,000 ms |
コード長 | 2,889 bytes |
コンパイル時間 | 1,591 ms |
コンパイル使用メモリ | 174,192 KB |
実行使用メモリ | 224,000 KB |
最終ジャッジ日時 | 2024-09-21 21:00:54 |
合計ジャッジ時間 | 11,042 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 4 ms
5,376 KB |
testcase_14 | AC | 43 ms
19,456 KB |
testcase_15 | AC | 45 ms
20,224 KB |
testcase_16 | AC | 22 ms
10,880 KB |
testcase_17 | AC | 53 ms
22,912 KB |
testcase_18 | AC | 53 ms
22,784 KB |
testcase_19 | AC | 56 ms
22,912 KB |
testcase_20 | AC | 237 ms
99,840 KB |
testcase_21 | AC | 70 ms
5,376 KB |
testcase_22 | AC | 74 ms
81,280 KB |
testcase_23 | AC | 388 ms
174,976 KB |
testcase_24 | AC | 165 ms
82,048 KB |
testcase_25 | AC | 322 ms
125,184 KB |
testcase_26 | AC | 24 ms
5,632 KB |
testcase_27 | AC | 5 ms
5,376 KB |
testcase_28 | AC | 39 ms
13,056 KB |
testcase_29 | AC | 495 ms
132,096 KB |
testcase_30 | AC | 351 ms
101,248 KB |
testcase_31 | AC | 754 ms
205,952 KB |
testcase_32 | AC | 852 ms
224,000 KB |
testcase_33 | AC | 806 ms
224,000 KB |
testcase_34 | AC | 821 ms
224,000 KB |
testcase_35 | AC | 790 ms
224,000 KB |
testcase_36 | AC | 793 ms
224,000 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef pair<int, int> P; typedef pair<ll, ll> Pll; typedef vector<int> Vi; //typedef tuple<int, int, int> T; #define FOR(i,s,x) for(int i=s;i<(int)(x);i++) #define REP(i,x) FOR(i,0,x) #define ALL(c) c.begin(), c.end() #define DUMP( x ) cerr << #x << " = " << ( x ) << endl const int dr[4] = {-1, 0, 1, 0}; const int dc[4] = {0, 1, 0, -1}; #define INF 1<<30 #define MAX_V 1000010 // graph by adjacency list struct Edge { int dst, weight; Edge(int dst, int weight) : dst(dst), weight(weight) { } bool operator < (const Edge &e) const { return weight > e.weight; } }; struct Graph { int V; vector<vector<Edge>> E; Graph(int V) : V(V) { E.resize(V); } void add_edge(int src, int dst, int weight) { E[src].push_back(Edge(dst, weight)); } }; struct Node { int v, dist; Node(int v, int dist) : v(v), dist(dist) { }; bool operator < (const Node &n) const { return dist > n.dist; // reverse } }; struct ShortestPath { const Graph g; int start; vector<int> dist; ShortestPath(const Graph g, int start) : g(g), start(start) { } void dijkstra() { std::priority_queue<Node> que; dist.resize(g.V, INF); dist[start] = 0; que.push(Node(start, 0)); while (!que.empty()) { Node n = que.top(); que.pop(); int v = n.v, cost = n.dist; if (dist[v] < cost) continue; for (Edge e : g.E[v]) { if (dist[v] + e.weight < dist[e.dst]) { dist[e.dst] = dist[v] + e.weight; que.push(Node(e.dst, dist[e.dst])); } } } } }; int main() { // use scanf in CodeForces! cin.tie(0); ios_base::sync_with_stdio(false); int W, H, N; cin >> W >> H >> N; vector<int> imos_w(H*W, 0), imos_h(H*W, 0); REP(i, N) { int M, prev; cin >> M >> prev; REP(i, M) { int b; cin >> b; int p1 = prev, p2 = b; if (p1 > p2) swap(p1, p2); int r1 = p1 / W, c1 = p1 % W, r2 = p2 / W, c2 = p2 % W; //cout << '(' << r1 << ',' << c1 << ')' << ' ' << '(' << r2 << ',' << c2 << ')' << endl; if (r1 == r2) { imos_w[p1]++, imos_w[p2]--; } else if (c1 == c2) { imos_h[c1 * H + r1]++, imos_h[c2 * H + r2]--; } prev = b; } } REP(i, W*H-1) imos_h[i+1] += imos_h[i], imos_w[i+1] += imos_w[i]; Graph g(H*W); REP(i, H*W) { if (imos_w[i]) g.add_edge(i, i+1, 1), g.add_edge(i+1, i, 1); if (imos_h[i]) { int p1 = (i%H)*W+i/H, p2 = p1 + W; g.add_edge(p1, p2, 1), g.add_edge(p2, p1, 1); } } /*REP(i, W*H) { cout << i << ':'; for (auto v : g.E[i]) cout << v.dst << ' '; cout << endl; }*/ ShortestPath sp(g, 0); sp.dijkstra(); if (sp.dist[W*H-1] == INF) { cout << "Odekakedekinai.." << endl; } else { cout << sp.dist[W*H-1] << endl; } //REP(i, g.V) cout << sp.dist[i] << (i == g.V-1 ? '\n' : ' '); return 0; }