제출 #99178

#제출 시각아이디문제언어결과실행 시간메모리
99178figter001고대 책들 (IOI17_books)C++17
12 / 100
2059 ms332228 KiB
#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++)
                ~^~~~~~~~~
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…