답안 #1006931

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1006931 2024-06-24T09:55:54 Z kebine Art Collections (BOI22_art) C++17
0 / 100
1 ms 344 KB
#include "art.h"
#include <bits/stdc++.h>
using namespace std;

void solve(int N) {
    vector<int> order(N);
    iota(order.begin(),order.end(),1);
    int last = publish(order);
    for(int i=1;i<N;i++){
        rotate(order.begin(),order.begin()+i-1,order.begin()+i);
        int curr = publish(order);
        int dist = curr-last;
        int idx = (dist+i)/2;
        rotate(order.begin(),order.begin()+1,order.begin()+idx+1);
    }
    answer(order);
}

Compilation message

interface.cpp: In function 'int publish(std::vector<int>)':
interface.cpp:20:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   20 |     if(v.size() != N) {
      |        ~~~~~~~~~^~~~
interface.cpp: In function 'void answer(std::vector<int>)':
interface.cpp:36:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   36 |     if(v.size() != N) {
      |        ~~~~~~~~~^~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Not correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Not correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Not correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Not correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Not correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Not correct
2 Halted 0 ms 0 KB -