| Task: | Hypyt |
| Sender: | viiviP |
| Submission time: | 2025-11-05 20:26:24 +0200 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | WRONG ANSWER | 0 |
| #4 | WRONG ANSWER | 0 |
| #5 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #2 | WRONG ANSWER | 0.00 s | 1, 2, 3, 4, 5 | details |
| #3 | WRONG ANSWER | 0.00 s | 1, 2, 3, 4, 5 | details |
| #4 | WRONG ANSWER | 0.00 s | 1, 2, 3, 4, 5 | details |
| #5 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #6 | WRONG ANSWER | 0.45 s | 2, 5 | details |
| #7 | WRONG ANSWER | 0.27 s | 2, 5 | details |
| #8 | WRONG ANSWER | 0.13 s | 2, 5 | details |
| #9 | WRONG ANSWER | 0.47 s | 3, 4, 5 | details |
| #10 | WRONG ANSWER | 0.46 s | 3, 4, 5 | details |
| #11 | WRONG ANSWER | 0.46 s | 3, 4, 5 | details |
| #12 | WRONG ANSWER | 0.51 s | 4, 5 | details |
| #13 | WRONG ANSWER | 0.48 s | 4, 5 | details |
| #14 | WRONG ANSWER | 0.47 s | 4, 5 | details |
| #15 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #16 | WRONG ANSWER | 0.82 s | 5 | details |
| #17 | WRONG ANSWER | 0.65 s | 5 | details |
| #18 | WRONG ANSWER | 0.57 s | 5 | details |
| #19 | ACCEPTED | 0.56 s | 5 | details |
| #20 | WRONG ANSWER | 0.57 s | 5 | details |
| #21 | ACCEPTED | 0.51 s | 5 | details |
| #22 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #23 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #24 | ACCEPTED | 0.47 s | 5 | details |
| #25 | ACCEPTED | 0.44 s | 5 | details |
| #26 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #27 | ACCEPTED | 0.50 s | 5 | details |
Code
#include <iostream>
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
int n, m, q;
int main() {
//ios_base::sync_with_stdio(0);
//cin.tie(0);
//cout.tie(0);
cin >> n>>m>>q;
vector<vector<char>> r(n+1, vector<char>(m+1));
vector<vector<pair<int, int>>>v(n+1); //v[rivi_id].push_back({rivi_id, x}) //vieruslista
vector<vector<int>> e(n+1, vector<int>(n+1,1e9)); //etäisyydet e[i][j] etäisyys i:riviltä j:riville
//vector<vector<pair<vector<int>, vector<int>>>> p(n+1, vector<pair<vector<int>,vector<int>>>(n+1)); //p[alku][loppu].first = [aloikusen x:t]
//vector<vector<pair<vector<pair<int,int>>, vector<pair<int,int>>>>> p(n+1, vector<pair<vector<pair<int,int>>,vector<pair<int,int>>>>(n+1)); //pair<x-akseli, y-akseli>
vector<vector<pair<vector<int>, vector<int>>>> p(n+1, vector<pair<vector<int>,vector<int>>>(n+1)); //pair<x-akseli, y-akseli>
for (int i =1; i<=n;i++) {
string s;
cin>>s;
for (int j = 1; j<=m;j++) {
r[i][j] = s[j-1];
if (r[i][j] == '.') {
}
}
}
//vierusmatriisi
for (int i = 1; i<=n;i++) {
e[i][i] = 0;
for (int j = 1;j<=m;j++) {
if (r[i][j] == '.') {
for (int k = 1; k<=n;k++) { //y-akseli
if (r[k][j] == '.' && k != i) {
v[i].push_back({j, k});
e[i][k] = 2; //voi vähentää lopussa 1 jos samassa sarakkeessa
p[i][k].first.push_back(j);
p[i][k].second.push_back(j); //vai tähänkin k??
}
}
}
}
}
//for (int i = 1;i<=n;i++) {
// cout <<i<<":\n";
//for (auto p : v[1]) {
// cout <<p.first<<" " <<p.second<<"\n";
//}
//FLOYD-WARSHALL
for (int k = 1;k<=n;k++) { //välisolmu
for (int i = 1;i<=n;i++) { //alkusolmu
for (int j = 1;j<=n;j++) { //loppusolmu
if (e[i][j] > e[i][k] + e[k][j]) {
e[i][j] = e[i][k] + e[k][j];
for (auto d : p[i][k].first) {
p[i][j].first.push_back(d);
}
for (auto d : p[k][j].second) {
p[i][j].second.push_back(d);
}
}
}
}
}
//cout <<"1 aloitus\n";
//for (auto a : p[1][3].first) {
// cout <<"reitti 1 => 3 voi alkaa x:lla "<<a<<"\n";
//}
//for (auto a : p[1][3].second) {
// cout <<"reitti 1 => 3 voi loppua x:lla "<<a<<"\n";
//}
for (int i = 0;i<q;i++) {
int y1, x1, y2,x2;
cin >>y1>>x1>>y2>>x2;
//tarkista jos samaa saraketta
//cout<<"---\n";
if (y1 == y2 && x1 == x2) {
cout <<"0\n";
} else if (e[y1][y2] >= 1e9 || r[y1][x1] == '*' || r[y2][x2] == '*') {
cout <<"-1\n";
} else if (y1 == y2 || x1 == x2) {
cout <<"1\n";
}
else {
int ans = e[y1][y2];
//cout <<ans<<"\n";
bool alku = false;
bool loppu = false;
bool f = false;
for (auto j : p[y1][y2].first) {
//cout <<j<<" x-koordinaatti joka aloittaa alku-loppu\n";
if (j == x1) { //j.second (y-koordinaatti)
alku = true;
//if (j == y2) {
// cout <<ans<<"\n";
// f = true;
// break;
//}
//cout <<"ei alkulisaa\n";
}
}
if (f) {
continue;
}
for (auto j : p[y1][y2].second) {
//cout <<j<<" x-koordinaatti joka lopettaa alku-loppu\n";
if (j == x2) {
loppu = true;
//if (j.second == y1) {
// cout <<ans <<"\n"; //ei pitäisi tapahtua tätä koskaan, koska alkua tarkastellessa olisi huomattu
// f = true;
// break;
//}
}
}
if (f) {
continue;
}
if (alku == false) {
ans += 1;
//cout <<"lisataan, koska alku ei suoraan\n";
}
if (loppu == true) {
//cout <<ans<<"\n";
ans = ans-1;
//cout <<"vahennetaan, koska loppu suoraan oikein\n";
}
cout <<ans <<"\n";
}
}
}Test details
Test 1 (public)
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 4 6 5 .*.*** *...** *****. *..*.* ... |
| correct output |
|---|
| 1 0 3 3 -1 |
| user output |
|---|
| 1 0 3 3 -1 |
Test 2
Group: 1, 2, 3, 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 10 10 10 .......... .....*.... ........*. *.*....*.. ... |
| correct output |
|---|
| 1 2 1 2 2 ... |
| user output |
|---|
| 1 1 1 2 2 ... |
Feedback: Incorrect character on line 2 col 1: expected "2", got "1"
Test 3
Group: 1, 2, 3, 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 10 10 10 *...***.** *****.*... **..**.**. ..**.**.*. ... |
| correct output |
|---|
| 1 2 2 1 2 ... |
| user output |
|---|
| 1 2 2 1 1 ... |
Feedback: Incorrect character on line 5 col 1: expected "2", got "1"
Test 4
Group: 1, 2, 3, 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 10 10 10 ***.*.**** ********** *.******** .*.***.**. ... |
| correct output |
|---|
| 3 4 2 3 4 ... |
| user output |
|---|
| 3 4 2 3 3 ... |
Feedback: Incorrect character on line 5 col 1: expected "4", got "3"
Test 5
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 10 10 1 .****.**** **.**..*** ********** *******..* ... |
| correct output |
|---|
| 7 |
| user output |
|---|
| 7 |
Test 6
Group: 2, 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 250 .*...*.....*******..**...*....... |
| correct output |
|---|
| 2 3 3 2 2 ... |
| user output |
|---|
| 1 3 3 2 2 ... |
Feedback: Incorrect character on line 1 col 1: expected "2", got "1"
Test 7
Group: 2, 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 250 ...*......**.**.*.*..**..*..**... |
| correct output |
|---|
| 2 2 2 2 3 ... |
| user output |
|---|
| 2 2 1 2 3 ... |
Feedback: Incorrect character on line 3 col 1: expected "2", got "1"
Test 8
Group: 2, 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 250 **..**..****.****.*.***.***..*... |
| correct output |
|---|
| 2 3 3 3 3 ... |
| user output |
|---|
| 2 3 3 3 3 ... |
Feedback: Incorrect character on line 30 col 1: expected "2", got "1"
Test 9
Group: 3, 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 40 40 200000 ...*.**.*..*.............*.*..... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| 2 2 1 2 1 ... |
Feedback: Incorrect character on line 3 col 1: expected "2", got "1"
Test 10
Group: 3, 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 40 40 200000 **.**..*.*.*.******....****.*.... |
| correct output |
|---|
| 2 1 3 2 2 ... |
| user output |
|---|
| 1 1 3 1 2 ... |
Feedback: Incorrect character on line 1 col 1: expected "2", got "1"
Test 11
Group: 3, 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 40 40 200000 .*.*.**.*****.***.*.****.**.**... |
| correct output |
|---|
| 3 3 3 3 3 ... |
| user output |
|---|
| 3 3 3 3 4 ... |
Feedback: Incorrect character on line 5 col 1: expected "3", got "4"
Test 12
Group: 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 80 80 200000 *....**.***..****...*.....*...... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| 2 2 1 1 1 ... |
Feedback: Incorrect character on line 3 col 1: expected "2", got "1"
Test 13
Group: 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 80 80 200000 .***.*..*.***..*****....**...*... |
| correct output |
|---|
| 3 2 2 3 2 ... |
| user output |
|---|
| 3 2 2 3 2 ... |
Feedback: Incorrect character on line 8 col 1: expected "2", got "1"
Test 14
Group: 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 80 80 200000 *******.*****.*..*..****...***... |
| correct output |
|---|
| 2 3 1 2 2 ... |
| user output |
|---|
| 2 3 1 2 2 ... |
Feedback: Incorrect character on line 10 col 1: expected "2", got "1"
Test 15
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 250 250 200000 *....*..*..*..**..*.........**... |
| correct output |
|---|
| 3 2 2 2 2 ... |
| user output |
|---|
| (empty) |
Test 16
Group: 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 200000 ..*....*..*......*.**.*.*..***... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| 2 1 1 2 2 ... |
Feedback: Incorrect character on line 2 col 1: expected "2", got "1"
Test 17
Group: 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 200000 *..*.*****.*********.****.****... |
| correct output |
|---|
| 3 3 2 2 2 ... |
| user output |
|---|
| 3 3 1 2 2 ... |
Feedback: Incorrect character on line 3 col 1: expected "2", got "1"
Test 18
Group: 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 200000 *********.**********.******.**... |
| correct output |
|---|
| 3 3 3 3 3 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
Feedback: Incorrect character on line 35 col 1: expected "2", got "1"
Test 19
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 200000 .*****************************... |
| correct output |
|---|
| 104 422 145 93 65 ... |
| user output |
|---|
| 104 422 145 93 65 ... |
Test 20
Group: 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 200000 ..****************************... |
| correct output |
|---|
| 57 155 38 65 98 ... |
| user output |
|---|
| 57 155 38 65 98 ... |
Feedback: Incorrect character on line 76 col 1: expected "2", got "1"
Test 21
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 200000 .*****************************... |
| correct output |
|---|
| 498 498 498 498 498 ... |
| user output |
|---|
| 498 498 498 498 498 ... |
Test 22
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 10 1 10 * * . * ... |
| correct output |
|---|
| 0 1 1 0 0 ... |
| user output |
|---|
| 0 1 1 0 0 ... |
Test 23
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 1 10 10 ........*. 1 7 1 10 1 4 1 7 1 5 1 1 ... |
| correct output |
|---|
| 1 1 1 1 1 ... |
| user output |
|---|
| 1 1 1 1 1 ... |
Test 24
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 1 200000 * . * . ... |
| correct output |
|---|
| 1 1 1 1 1 ... |
| user output |
|---|
| 1 1 1 1 1 ... |
Test 25
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 1 250 200000 *.*.*...*.*.**.***..**.*.*..**... |
| correct output |
|---|
| 1 1 1 1 1 ... |
| user output |
|---|
| 1 1 1 1 1 ... |
Test 26
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 250 250 200000 ................................. |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| (empty) |
Test 27
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 200000 ******************************... |
| correct output |
|---|
| 0 0 0 0 0 ... |
| user output |
|---|
| 0 0 0 0 0 ... |
