結果
問題 | No.34 砂漠の行商人 |
ユーザー | assy1028 |
提出日時 | 2015-03-23 13:17:02 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 645 ms / 5,000 ms |
コード長 | 2,053 bytes |
コンパイル時間 | 787 ms |
コンパイル使用メモリ | 98,160 KB |
実行使用メモリ | 58,240 KB |
最終ジャッジ日時 | 2024-06-28 10:16:13 |
合計ジャッジ時間 | 4,334 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,504 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 17 ms
12,800 KB |
testcase_05 | AC | 21 ms
15,744 KB |
testcase_06 | AC | 10 ms
10,496 KB |
testcase_07 | AC | 34 ms
24,320 KB |
testcase_08 | AC | 41 ms
28,416 KB |
testcase_09 | AC | 182 ms
31,232 KB |
testcase_10 | AC | 35 ms
23,936 KB |
testcase_11 | AC | 393 ms
54,528 KB |
testcase_12 | AC | 12 ms
8,832 KB |
testcase_13 | AC | 645 ms
58,240 KB |
testcase_14 | AC | 476 ms
52,352 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 36 ms
13,824 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 6 ms
5,632 KB |
testcase_19 | AC | 149 ms
36,608 KB |
testcase_20 | AC | 253 ms
43,904 KB |
testcase_21 | AC | 5 ms
5,504 KB |
testcase_22 | AC | 10 ms
7,680 KB |
testcase_23 | AC | 4 ms
5,376 KB |
testcase_24 | AC | 328 ms
47,104 KB |
testcase_25 | AC | 26 ms
12,928 KB |
コンパイルメッセージ
main.cpp: In function ‘int solve(int, int, int, int, int, int)’: main.cpp:48:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 48 | scanf("%d", &ls[i][j]); | ~~~~~^~~~~~~~~~~~~~~~~ main.cpp: In function ‘int main()’: main.cpp:80:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 80 | scanf("%d%d%d%d%d%d", &n, &v, &sx, &sy, &gx, &gy); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <algorithm> #include <iostream> #include <cstdio> #include <map> #include <numeric> #include <cmath> #include <set> #include <sstream> #include <string> #include <vector> #include <queue> #include <stack> #include <complex> #include <string.h> #include <unordered_set> #include <unordered_map> #include <tuple> #include <iomanip> using namespace std; #define endl '\n' #define all(v) (v).begin(), (v).end() #define rall(v) (v).rbegin(), (v).rend() #define uniq(v) (v).erase(unique((v).begin(), (v).end()), (v).end()) typedef long long ll; typedef pair<int, int> P; typedef tuple<int, int, int, int> T; typedef unsigned int uint; typedef unsigned long long ull; struct pairhash { public: template<typename T, typename U> size_t operator()(const pair<T, U> &x) const { size_t seed = hash<T>()(x.first); return hash<U>()(x.second) + 0x9e3779b9 + (seed<<6) + (seed>>2); } }; const int inf = 1000000009; const double eps = 1e-8; bool used[105][105][10010]; int solve(int n, int v, int sx, int sy, int gx, int gy) { int ls[105][105]; for (int i = 1; i <= n; i++) { for (int j = 1; j <= n; j++) { scanf("%d", &ls[i][j]); } } //memset(used, false, sizeof(used)); const int dx[4] = {0, 1, 0, -1}; const int dy[4] = {1, 0, -1, 0}; queue<T> que; used[sy][sx][v] = true; que.push(make_tuple(sy, sx, v, 0)); while (!que.empty()) { T t = que.front(); que.pop(); int x = get<0>(t), y = get<1>(t), r = get<2>(t), d = get<3>(t); if (x == gy && y == gx) return d; for (int i = 0; i < 4; i++) { int X = x + dx[i], Y = y + dy[i]; if (1 <= X && X <= n && 1 <= Y && Y <= n && r-ls[X][Y] > 0 && !used[X][Y][r-ls[X][Y]]) { used[X][Y][r-ls[X][Y]] = true; que.push(make_tuple(X, Y, r-ls[X][Y], d+1)); } } } return -1; } int main() { /* ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(15); */ int n, v, sx, sy, gx, gy; scanf("%d%d%d%d%d%d", &n, &v, &sx, &sy, &gx, &gy); printf("%d\n", solve(n, v, sx, sy, gx, gy)); }