답안 #289073

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
289073 2020-09-02T10:24:33 Z JoMee 고대 책들 (IOI17_books) C++17
0 / 100
1 ms 384 KB
#include "books.h"
#include <bits/stdc++.h>
using namespace std;

#define rep(i,a,n) for(int i = a; i<n; i++)
#define per(i,a,n) for(int i = n-1; i>=a; i--)

long long minimum_walk(vector<int> p, int s) {
	vector<long long> sm(p.size(),0);
	rep(i,0,p.size()){
		if(i < p[i])sm[i]++,sm[p[i]]--;
	}
	rep(i,1,sm.size())sm[i] += sm[i-1];

	int rm = -1;
	per(i,0,p.size()){
		if(sm[i] != 0){
			rm = i;
			break;
		}
	}
	int lm = -1;

	rep(i,0,p.size()){
		if(sm[i] != 0){
			lm = i;
			break;
		}
	}
	if(rm == -1)return 0;
	long long res = 0;
	rep(i,0,rm){
		if(sm[i] != 0)res+=2*(sm[i]-1);
	}
	res += 2*(rm-lm+1);
	return res;
}

Compilation message

books.cpp: In function 'long long int minimum_walk(std::vector<int>, int)':
books.cpp:5:36: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    5 | #define rep(i,a,n) for(int i = a; i<n; i++)
......
   10 |  rep(i,0,p.size()){
      |      ~~~~~~~~~~~~                   
books.cpp:10:2: note: in expansion of macro 'rep'
   10 |  rep(i,0,p.size()){
      |  ^~~
books.cpp:5:36: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    5 | #define rep(i,a,n) for(int i = a; i<n; i++)
......
   13 |  rep(i,1,sm.size())sm[i] += sm[i-1];
      |      ~~~~~~~~~~~~~                  
books.cpp:13:2: note: in expansion of macro 'rep'
   13 |  rep(i,1,sm.size())sm[i] += sm[i-1];
      |  ^~~
books.cpp:5:36: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    5 | #define rep(i,a,n) for(int i = a; i<n; i++)
......
   24 |  rep(i,0,p.size()){
      |      ~~~~~~~~~~~~                   
books.cpp:24:2: note: in expansion of macro 'rep'
   24 |  rep(i,0,p.size()){
      |  ^~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB 3rd lines differ - on the 1st token, expected: '6', found: '4'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB 3rd lines differ - on the 1st token, expected: '6', found: '4'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB 3rd lines differ - on the 1st token, expected: '6', found: '4'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB 3rd lines differ - on the 1st token, expected: '3304', found: '2744'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB 3rd lines differ - on the 1st token, expected: '6', found: '4'
2 Halted 0 ms 0 KB -