이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "books.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
int ans;
map<pair<int,pair<int,pair<int,pair<int,vector<int>>>>>,int> mp;
void calc(int idx,vector<int> c,int cst,int h,int l){
if(cst > ans || idx < 0 || idx >= c.size())return;
if(mp[{idx,{cst,{h,{l,c}}}}] == 1)return;
mp[{idx,{cst,{h,{l,c}}}}] = 1;
bool f = 1;
for(int i = 0;i<c.size();i++)
if(i != c[i])
f = 0;
if(f && idx == 0){
ans = min(cst,ans);
return;
}
calc(idx+1,c,cst+1,h,1);
calc(idx-1,c,cst+1,h,1);
swap(h,c[idx]);
if(l)
calc(idx,c,cst,h,0);
calc(idx+1,c,cst+1,h,1);
calc(idx-1,c,cst+1,h,1);
}
ll minimum_walk(vector<int> p, int s) {
ans = 10;
calc(s,p,0,-1,0);
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
books.cpp: In function 'void calc(int, std::vector<int>, int, int, int)':
books.cpp:14:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(cst > ans || idx < 0 || idx >= c.size())return;
~~~~^~~~~~~~~~~
books.cpp:18:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0;i<c.size();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... |