# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
487902 | maks007 | Trampoline (info1cup20_trampoline) | C++14 | 2116 ms | 416220 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
void solve() {
int n, m, green;
cin >> n >> m >> green;
const int N = n * m;
vector <int> used(N);
vector <vector <int>> g(N);
pair <int, int> mp[n][m];
function <void(int)> dfs=[&](int v) {
used[v] = 1;
// cout << v << " ";
for(int i = 0; i < g[v].size(); i ++) {
if (!used[g[v][i]]) dfs(g[v][i]);
}
};
int cnt = 0;
for(int i = 0; i < n; i ++) {
for(int j = 0; j < m; j ++) {
mp[i][j].first = cnt ++;
mp[i][j].second = 0;
}
}
for(int i = 0; i < green; i ++) {
int x, y;
cin >> x >> y;
x --;
y --;
mp[x][y].second = 1;
}
for(int i = 0; i < n; i ++) {
for(int j = 0; j < m; j ++) {
if(j != m - 1)
g[mp[i][j].first].push_back(mp[i][j+1].first);
if(i != n - 1)
if(mp[i][j].second == 1) g[mp[i][j].first].push_back(mp[i+1][j].first);
}
}
int q;
cin >> q;
while(q --) {
pair <int, int> start, end;
cin >> start.first >> start.second;
cin >> end.first >> end.second;
end.first --;
end.second --;
start.first --;
start.second --;
for(int i = 0; i < used.size(); i ++) used[i] = 0;
dfs(mp[start.first][start.second].first);
if(used[mp[end.first][end.second].first]) cout << "Yes\n";
else cout << "No\n";
}
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int Q = 1;
//cin >> Q;
while (Q --) {
solve();
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |