QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#225133 | #3514. Bouldering | hagry# | AC ✓ | 696ms | 83716kb | C++14 | 2.6kb | 2023-10-24 00:31:21 | 2023-10-24 00:31:22 |
Judging History
answer
#include <bits/stdc++.h>
#define pb push_back
#define F first
#define S second
#define MP make_pair
#define all(x) x.begin(),x.end()
#define Hagry ios::sync_with_stdio(false);cout.tie(NULL);cin.tie(NULL);
using namespace std;
using ll = long long;
using pi = pair<int, int>;
using vi = vector<int>;
using vpi = vector<pair<int, int>>;
using vvi = vector<vector<int>>;
using ld = long double;
const ld OO = 1e15;
const int N = 2e5 + 5;
const int H = 25 + 4;
const int maxS = 6e3 + 5;
int h, w, r, s;
char grid[H][H];
ld dp[H][H][maxS];
int vis[H][H][maxS], vid;
vector<pair<pi, int>> adj[H][H];
pi start, target;
ld solve(int i, int j, int remS) {
int cost = (grid[i][j] - '0');
remS -= cost;
if(remS < 0)return OO;
if(MP(i, j) == target)
return 0;
ld &ret = dp[i][j][remS];
if(vis[i][j][remS] == vid)
return ret;
vis[i][j][remS] = vid;
ret = OO;
for(auto e:adj[i][j]){
ret = min(ret, sqrt((double)e.S) + solve(e.F.F, e.F.S, remS));
}
return ret;
}
void TC() {
++vid;
cin >> h >> w >> r >> s;
target = {-1, -1};
for (int i = 0; i < h; ++i) {
for (int j = 0; j < w; ++j) {
cin >> grid[i][j];
if (grid[i][j] != '.') {
if (target == MP(-1, -1))
target = MP(i, j);
start = MP(i, j);
}
}
}
for (int i = 0; i < h; ++i) {
for (int j = 0; j < w; ++j) {
if (grid[i][j] == '.')continue;
for (int d1 = -3; d1 <= 3; ++d1) {
for (int d2 = -3; d2 <= 3; ++d2) {
int newI = d1 + i;
int newJ = d2 + j;
if (newI < 0 || newI >= h ||
newJ < 0 || newJ >= w ||
grid[newI][newJ] == '.')
continue;
int distSq = abs(d1) * abs(d1) + abs(d2) * abs(d2);
if (r * r < distSq)continue;
adj[i][j].push_back(MP(MP(newI, newJ), distSq));
}
}
}
}
s = min(s, maxS);
ld ans = solve(start.F, start.S, s);
if (ans >= OO)
cout << "impossible\n";
else
cout << fixed << setprecision(9) << ans;
}
int32_t main() {
#ifndef ONLINE_JUDGE
freopen("input.in", "r", stdin);
freopen("output.out", "w", stdout);
#endif
Hagry
int t = 1;
// cin >> t;
while (t--) {
TC();
cout << '\n';
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 20392kb
input:
12 11 3 11 ........... ........3.. .......3.1. ........... .......2... .....2..... .1.1....... .....2..... .1......... ...2....... .1......... ...........
output:
13.543203767
result:
ok
Test #2:
score: 0
Accepted
time: 2ms
memory: 16248kb
input:
8 16 3 15 ......1......... ....1..1.1...... ..2........1.... ...2......1..... .....4.1..2..1.. ................ .......1........ ................
output:
6.414213562
result:
ok
Test #3:
score: 0
Accepted
time: 1ms
memory: 9804kb
input:
10 10 2 10 ...2...... .......... ...5.2.... .......... .....3.... ....5..... ..2....2.. ..1....... ....2..... ..1.......
output:
impossible
result:
ok
Test #4:
score: 0
Accepted
time: 2ms
memory: 14184kb
input:
5 5 1 100 ....1 .1111 .1.9. .119. ..1..
output:
6.000000000
result:
ok
Test #5:
score: 0
Accepted
time: 1ms
memory: 10056kb
input:
6 7 3 10 ..6.... ..1.... ....... .5..1.. ....... ..1....
output:
6.656854249
result:
ok
Test #6:
score: 0
Accepted
time: 0ms
memory: 3640kb
input:
2 18 2 5 .............1.... ...............9..
output:
impossible
result:
ok
Test #7:
score: 0
Accepted
time: 63ms
memory: 67516kb
input:
25 25 1 1000000 9........................ 21.21921.21921.21921.2193 92.92.92.92.92.92.92.92.3 .2..2..2..2..2..2..2..2.3 12.12.12.12.12.12.12.12.3 29.29.29.29.29.29.29.29.3 2..2..2..2..2..2..2..2..3 21.21.21.21.21.21.21.21.3 92.92.92.92.92.92.92.92.3 .2..2..2..2..2..2..2..2.3 12.12.12.12.12.12.12.12....
output:
272.000000000
result:
ok
Test #8:
score: 0
Accepted
time: 1ms
memory: 5696kb
input:
2 18 2 5 .............9.... ...............1..
output:
impossible
result:
ok
Test #9:
score: 0
Accepted
time: 0ms
memory: 6004kb
input:
3 3 2 7 ..3 ... ..4
output:
2.000000000
result:
ok
Test #10:
score: 0
Accepted
time: 145ms
memory: 80580kb
input:
25 25 1 1000000000 ........................1 2547174745232875997886554 7965651126962942737771266 6728739299224693912515356 3892629154668465958161356 7224952531945412299918567 6652628797132321234345444 2166938247278479435464195 4614671371217599224792557 1652832422769863877435862 528832887161666938898...
output:
48.000000000
result:
ok
Test #11:
score: 0
Accepted
time: 696ms
memory: 80540kb
input:
25 25 3 1000000000 ........................1 9726394797162243248412114 2389413121411497892345775 3536731263389491377529168 8539547197629558379487557 3476316664681454144237253 7167793883245166544976269 6551392597242556216495516 2913226341422851312188434 4794887856899463978185497 183788127159254461697...
output:
33.941125497
result:
ok
Test #12:
score: 0
Accepted
time: 661ms
memory: 81368kb
input:
25 25 3 100000 ........................1 9726394797162243248412114 2389413121411497892345775 3536731263389491377529168 8539547197629558379487557 3476316664681454144237253 7167793883245166544976269 6551392597242556216495516 2913226341422851312188434 4794887856899463978185497 1837881271592544616972778...
output:
33.941125497
result:
ok
Test #13:
score: 0
Accepted
time: 659ms
memory: 81492kb
input:
25 25 3 1000000000 ........................1 2547174745232875997886554 7965651126962942737771266 6728739299224693912515356 3892629154668465958161356 7224952531945412299918567 6652628797132321234345444 2166938247278479435464195 4614671371217599224792557 1652832422769863877435862 528832887161666938898...
output:
33.941125497
result:
ok
Test #14:
score: 0
Accepted
time: 148ms
memory: 83480kb
input:
25 25 1 1000000000 ........................1 1111111111111111111111111 1111111111111111111111111 1111111111111111111111111 1111111111111111111111111 1111111111111111111111111 1111111111111111111111111 1111111111111111111111111 1111111111111111111111111 1111111111111111111111111 111111111111111111111...
output:
48.000000000
result:
ok
Test #15:
score: 0
Accepted
time: 637ms
memory: 83716kb
input:
25 25 3 1000000000 ........................1 1111111111111111111111111 1111111111111111111111111 1111111111111111111111111 1111111111111111111111111 1111111111111111111111111 1111111111111111111111111 1111111111111111111111111 1111111111111111111111111 1111111111111111111111111 111111111111111111111...
output:
33.941125497
result:
ok
Test #16:
score: 0
Accepted
time: 20ms
memory: 30892kb
input:
10 10 1 1000000000 .........1 1111111111 1111111111 1111111111 1111111111 1111111111 1111111111 1111111111 1111111111 1.........
output:
18.000000000
result:
ok
Test #17:
score: 0
Accepted
time: 2ms
memory: 30924kb
input:
18 20 3 549 ...................9 .9.9.9.9.9.9.9.9.9.. .................... 9................... 9.9.9.9.9.9.9.9.9.9. .................... ...................9 .9.9.9.9.9.9.9.9.9.9 .................... 9................... 9.9.9.9.9.9.9.9.9.9. .................... ...................9 .9.9.9.9.9.9.9....
output:
122.010961315
result:
ok
Test #18:
score: 0
Accepted
time: 9ms
memory: 43868kb
input:
18 20 3 227 ...................9 .9.9.9.9.9.9.9.9.9.. .................... 9................... 9.9.9.9.9.9.9.9.9.9. .................... ...................9 .1.1...............9 99999999999999991991 19991999999991999999 99999999999999999999 19991999999999199999 99999999999999999999 199999199999999...
output:
83.367252485
result:
ok
Test #19:
score: 0
Accepted
time: 97ms
memory: 83348kb
input:
25 25 3 1000000000 .......................9. 9999999999999999999999999 9999999999999999999999999 9999999999999999999999999 9999999999999999999999999 9999999999999999999999999 9999999999999999999999999 9999999999999999999999999 9999999999999999999999999 9999999999999999999999999 999999999999999999999...
output:
33.348766350
result:
ok
Test #20:
score: 0
Accepted
time: 1ms
memory: 5960kb
input:
2 1 1 2 1 1
output:
1.000000000
result:
ok
Test #21:
score: 0
Accepted
time: 0ms
memory: 67680kb
input:
25 25 2 242 3........................ ..71............8.......3 8..7..9....96..4.8...6... ........2...87.1......... ...26.........65396...182 ..16....2.4..5....8971... .....7.8..6...6.7..1..5.. ...........914...4...4... ....51..4.....22......6.. 6..........8..53.41...4.. .5.4........4...1......82 .....
output:
impossible
result:
ok
Test #22:
score: 0
Accepted
time: 0ms
memory: 11988kb
input:
25 25 2 273 ......9.................. .9..8........2.5.59...962 ........5..7....4....7..8 .87....7...2..........4.. ....2....5...........87.. 81...29..697.......9.483. 448.....1.....46....31... .3..4.......3....6....... ..4.....7..............6. ...4....4....1..3........ ...3..4.13..4..2.2.95..4. 3....
output:
impossible
result:
ok
Test #23:
score: 0
Accepted
time: 0ms
memory: 70236kb
input:
25 25 3 194 .7....................... .9.......7...9........... 99.....5.....2..84..3.... .8....9...76..6..6.9..6.. ...3..4....6....22.1..... .2....95...3..4.2.41..... ...7.3..5.46..9..7..25... 2....21....2..83..1....31 94......9.4.............. 8........2.1.8.........9. ...68.3.5.9..5........... 9....
output:
35.157475346
result:
ok
Test #24:
score: 0
Accepted
time: 1ms
memory: 5872kb
input:
25 25 3 437 5........................ 6.6.....6...6..84......5. 2....6.7.7....1..3...7.5. 1...4...7....1.8...667339 6.21648.6.......8.22...9. .3....3............1..... ...2195...71............. 8....8..31..6.31.5..4...6 .6.1....2......7.......7. .........5..1.2.9.9...... ........3.8..9..64......3 .8...
output:
impossible
result:
ok
Test #25:
score: 0
Accepted
time: 0ms
memory: 11924kb
input:
25 25 2 422 .4....................... .....6....2..8....55..... 7.........7........63.1.. .9......8...2..4276...... .........61........7..944 ...9..2..7.......1.41...5 ...8..2......8...2...9.5. ......6.2.8....27...5.... .3.9......4....9..54....5 .8..6..26........8.2...1. ......8........3.4..4...7 .....
output:
impossible
result:
ok
Test #26:
score: 0
Accepted
time: 87ms
memory: 74840kb
input:
25 25 3 922193402 7........................ ....86...7.9...7.29..5... ....1......1...8.52...5.. 7..2....9.3.37........... .....35.1.86...9555.4..1. ...6.23...7....5.....5..9 8.7....95..65.1.7.....38. ........235............21 5559.2.72.........2...751 ...44.527.4.8....8.95.... ...7........8...5........
output:
37.150902636
result:
ok
Test #27:
score: 0
Accepted
time: 87ms
memory: 74888kb
input:
25 25 3 789168379 ......5.................. ....6.2.......8.3.28.4.2. 5.....6.88....9...72.2... ..4..8.........1..4...5.4 8773994.3.6.1...1..75...7 2629...79.9.1411......... .....791.......5..917.6.4 ..17.72..9....5.95....9.. ...5........7.3.25.4....9 .69..1.....3.....46573... 7......465.69.3..38..8...
output:
31.150902636
result:
ok
Test #28:
score: 0
Accepted
time: 1ms
memory: 7864kb
input:
25 25 3 242 ............6............ ................8.......3 ...7.......9.....8....... ........2................ ..............6..96.....2 ..1.....2..........9..... .....7....6........1..5.. ...........9.4...4....... ....5.................... ..............53......... ................1......8. .....
output:
impossible
result:
ok
Test #29:
score: 0
Accepted
time: 1ms
memory: 9980kb
input:
25 25 3 434 ..2...................... ........................5 ............3.....3...... .......8.............9... 3..........9............. .....4..........61....... ..3...................... .....4..............6..1. .18...................... 6........................ ...........43...........5 1....
output:
impossible
result:
ok
Test #30:
score: 0
Accepted
time: 178ms
memory: 68520kb
input:
22 24 3 5550 ........1............... .6.756811649178....7663. .88..7..55....5..8.1748. .9.1..9.7243.868.6.....4 3765..93.24..2..1971.9.. 7154..959.4...9.2..33.9. 7.673.578.712...59578.97 662....33..867.466.37.99 ..5.3.616..1252.7.9317.. .51.9.6..994471.5.932..9 4.3178.2..48.16.43831.8. ....7999.88....
output:
21.236067977
result:
ok
Test #31:
score: 0
Accepted
time: 53ms
memory: 78200kb
input:
25 25 1 1000000000 ........................1 111.111.111.111.111.111.1 1.1.1.1.1.1.1.1.1.1.1.1.1 1.1.1.1.1.1.1.1.1.1.1.1.1 1.1.1.1.1.1.1.1.1.1.1.1.1 1.1.1.1.1.1.1.1.1.1.1.1.1 1.1.1.1.1.1.1.1.1.1.1.1.1 1.1.1.1.1.1.1.1.1.1.1.1.1 1.1.1.1.1.1.1.1.1.1.1.1.1 1.1.1.1.1.1.1.1.1.1.1.1.1 1.1.1.1.1.1.1.1.1.1.1...
output:
312.000000000
result:
ok
Test #32:
score: 0
Accepted
time: 3ms
memory: 18360kb
input:
10 10 1 100 .......... .....1.... ....11.... ....11.... ....11.... ....11.... ....11.... ....11.... ....1..... ..........
output:
8.000000000
result:
ok
Test #33:
score: 0
Accepted
time: 0ms
memory: 18280kb
input:
10 10 1 100 .......... .....1.... .....1.... .....1.... .....1.... .....1.... .....1.... .....1.... .....1.... ..........
output:
7.000000000
result:
ok
Test #34:
score: 0
Accepted
time: 1ms
memory: 5960kb
input:
2 1 1 18 9 9
output:
1.000000000
result:
ok
Test #35:
score: 0
Accepted
time: 1ms
memory: 6004kb
input:
2 1 3 18 9 9
output:
1.000000000
result:
ok
Test #36:
score: 0
Accepted
time: 76ms
memory: 59168kb
input:
25 25 3 470510254 ......................... ......................... ......................... ......................... ......................... ......1.................. .......3.............1... ..............9.......... ........6....1...9...9... .........8.415........... ........6.....1....8.....
output:
26.144329926
result:
ok
Test #37:
score: 0
Accepted
time: 3ms
memory: 71196kb
input:
25 25 1 321 ..1...................... ..1..111...111...111..... .11.1191..1191..1191..111 11.11..1911.11.11..191191 1.11...111.11.11...111.11 1.19111...11.11.111...11. 1.11191..11.11.1191..11.. 11...11.11..1911.11.11... 91..11.11...111.11.11.111 11.11.11.111...11..191191 19.19.191191..11...111.11 11...
output:
320.000000000
result:
ok
Test #38:
score: 0
Accepted
time: 11ms
memory: 71120kb
input:
25 25 1 321 ..1...................... ..1..111...111...111..... .11.1161..1161..1161..111 11.11..1611.11.11..161161 1.11...111.11.11...111.11 1.16111...11.11.111...11. 1.11161..11.11.1161..11.. 11...11.11..1611.11.11... 61..11.11...111.11.11.111 11.11.11.111...11..161161 16.16.161161..11...111.11 11...
output:
320.000000000
result:
ok
Test #39:
score: 0
Accepted
time: 77ms
memory: 80992kb
input:
25 25 1 1000000000 ..1...................... ..1..111...111...111..... .11.1191..1191..1191..111 11.11..1911.11.11..191191 1.11...111.11.11...111.11 1.19111...11.11.111...11. 1.11191..11.11.1191..11.. 11...11.11..1911.11.11... 91..11.11...111.11.11.111 11.11.11.111...11..191191 19.19.191191..11...11...
output:
212.000000000
result:
ok
Test #40:
score: 0
Accepted
time: 3ms
memory: 70924kb
input:
25 25 1 320 ..1...................... ..1..111...111...111..... .11.1191..1191..1191..111 11.11..1911.11.11..191191 1.11...111.11.11...111.11 1.19111...11.11.111...11. 1.11191..11.11.1191..11.. 11...11.11..1911.11.11... 91..11.11...111.11.11.111 11.11.11.111...11..191191 19.19.191191..11...111.11 11...
output:
impossible
result:
ok
Test #41:
score: 0
Accepted
time: 1ms
memory: 9852kb
input:
10 10 1 100 .......... .....1.... .....1.... .....1.... .....1.... .......... .....1.... .....1.... .....1.... ..........
output:
impossible
result:
ok
Test #42:
score: 0
Accepted
time: 1ms
memory: 5780kb
input:
10 10 1 100 .......... .....1.... .......... .......... .......... .......... .......... .......... .....1.... ..........
output:
impossible
result:
ok
Test #43:
score: 0
Accepted
time: 0ms
memory: 77000kb
input:
25 25 1 1000000000 ...9..................... ..99.999...999...999..999 .99.99.9..99.9..99.9..9.9 99.99.99.99.99.99.99.99.9 9.99.99.99.99.99.99.99.99 999.99.99.99.99.99.99.99. ...99.99.99.99.99.99.99.. ..99.99.99.99.99.99.99... .99.99.99.99.99.99.99.999 99.99.99.99.99.99.99.99.9 9.99.99.99.99.99.99.9...
output:
361.000000000
result:
ok
Test #44:
score: 0
Accepted
time: 0ms
memory: 71296kb
input:
25 25 1 360 ...1..................... ..11.111...111...111..... .11.1191..1191..1191..111 11.11.11.11.11.11.11.1191 1911.11.11.11.11.11.11.11 111.11.11.11.11.11.11.11. ...11.11.11.11.11.11.11.. ..11.11.11.11.11.11.11... .11.11.11.11.11.11.11.111 11.11.11.11.11.11.11.1191 1911.11.11.11.11.11.11.11 11...
output:
359.000000000
result:
ok
Test #45:
score: 0
Accepted
time: 104ms
memory: 78392kb
input:
25 25 1 1000000000 ...1..................... ..11.111...111...111..111 .11.1191..1191..1191..191 11.11.11.11.11.11.11.11.1 1911.11.11.11.11.11.11.11 111.11.11.11.11.11.11.11. ...11.11.11.11.11.11.11.. ..11.11.11.11.11.11.11... .11.11.11.11.11.11.11.111 11.11.11.11.11.11.11.1191 1911..1.11..1.11..1.1...
output:
177.000000000
result:
ok