This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
int N, M, H, t, d[1010][1010], ans;
vector<pair<pair<int, int>, int> > v[1010][1010];
priority_queue<pair<int, pair<int, int> >, vector<pair<int, pair<int, int> > >, greater<pair<int, pair<int, int> > > > q;
int main(){
scanf("%d %d %d", &N, &M, &H);
for(int i = 0;i < N;i++){
for(int j = 0;j < M;j++){
d[i][j] = H;
}
}
for(int i = 0;i < N+1;i++){
for(int j = 0;j < M;j++){
scanf("%d", &t);
if(t == -1) continue;
if(i == 0){
if(t < d[0][j]){
q.push({t, {0, j}});
d[0][j] = t;
}
}
else if(i == N){
if(t < d[N-1][j]){
q.push({t, {N-1, j}});
d[N-1][j] = t;
}
}
else{
v[i-1][j].push_back({{i, j}, t});
v[i][j].push_back({{i-1, j}, t});
}
}
}
for(int i = 0;i < N;i++){
for(int j = 0;j < M+1;j++){
scanf("%d", &t);
if(t == -1) continue;
if(j == 0){
if(t < d[i][0]){
q.push({t, {i, 0}});
d[i][0] = t;
}
}
else if(j == M){
if(t < d[i][M-1]){
q.push({t, {i, M-1}});
d[i][M-1] = t;
}
}
else{
v[i][j-1].push_back({{i, j}, t});
v[i][j].push_back({{i, j-1}, t});
}
}
}
while(!q.empty()){
int q1 = q.top().first;
int qx = q.top().second.first;
int qy = q.top().second.second;
q.pop();
if(q1 > d[qx][qy]) continue;
for(int i = 0;i < v[qx][qy].size();i++){
int nx = v[qx][qy][i].first.first;
int ny = v[qx][qy][i].first.second;
if(d[nx][ny] > max(q1, v[qx][qy][i].second)){
d[nx][ny] = max(q1, v[qx][qy][i].second);
q.push({d[nx][ny], {nx, ny}});
}
}
}
for(int i = 0;i < N;i++){
for(int j = 0;j < M;j++){
ans += d[i][j];
}
}
printf("%d", ans);
return 0;
}
Compilation message (stderr)
watertank.cpp: In function 'int main()':
watertank.cpp:65:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<std::pair<int, int>, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
65 | for(int i = 0;i < v[qx][qy].size();i++){
| ~~^~~~~~~~~~~~~~~~~~
watertank.cpp:8:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
8 | scanf("%d %d %d", &N, &M, &H);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
watertank.cpp:16:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
16 | scanf("%d", &t);
| ~~~~~^~~~~~~~~~
watertank.cpp:38:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
38 | scanf("%d", &t);
| ~~~~~^~~~~~~~~~
# | 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... |