이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int n, m;
vector<int> b, p;
vector< set<int> > setP;
vector< map<int, int> > dp;
int main() {
scanf("%d %d", &n, &m);
b.assign(m, 0);
p.assign(m, 0);
setP.assign(n, set<int>() );
for (int i = 0; i < m; ++i) {
scanf("%d %d", &b[i], &p[i]);
setP[ b[i] ].insert(p[i]);
}
dp.assign(n, map<int, int>() );
priority_queue< pair<int, pair<int, int> >,
vector< pair<int, pair<int, int> > >,
greater< pair<int, pair<int, int> > > > pq;
dp[ b[0] ][ p[0] ] = 0; pq.push( { dp[ b[0] ][ p[0] ], { b[0], p[0] } } );
while (!pq.empty() ) {
auto tmp = pq.top(); pq.pop();
int curPos = tmp.second.first,
curPow = tmp.second.second;
if (tmp.first > dp[curPos][curPow]) continue;
for (int pow : setP[curPos]) {
if (!dp[curPos].count(pow) || dp[curPos][pow] > dp[curPos][curPow]) {
dp[curPos][pow] = dp[curPos][curPow];
pq.push( { dp[curPos][pow], { curPos, pow } } );
}
}
if (curPos + curPow < n &&
(!dp[curPos + curPow].count(curPow) || dp[curPos + curPow][curPow] > dp[curPos][curPow] + 1) ) {
dp[curPos + curPow][curPow] = dp[curPos][curPow] + 1;
pq.push( { dp[curPos + curPow][curPow], { curPos + curPow, curPow } } );
}
if (curPos - curPow >= 0 &&
(!dp[curPos - curPow].count(curPow) || dp[curPos - curPow][curPow] > dp[curPos][curPow] + 1) ) {
dp[curPos - curPow][curPow] = dp[curPos][curPow] + 1;
pq.push( { dp[curPos - curPow][curPow], { curPos - curPow, curPow } } );
}
}
if (!dp[ b[1] ].count(p[1]) ) printf("-1\n");
else printf("%d\n", dp[ b[1] ][ p[1] ]);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
skyscraper.cpp: In function 'int main()':
skyscraper.cpp:11:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d", &n, &m);
~~~~~^~~~~~~~~~~~~~~~~
skyscraper.cpp:16:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d", &b[i], &p[i]);
~~~~~^~~~~~~~~~~~~~~~~~~~~~~
# | 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... |