제출 #1120266

#제출 시각아이디문제언어결과실행 시간메모리
1120266vjudge1Art Collections (BOI22_art)C++17
70 / 100
1613 ms64060 KiB
#include "art.h"
#include <bits/stdc++.h>

using namespace std;
typedef long long ll;

map<vector<int>, int> u;
int cnt, n;

int ask(vector<int> v) {
    if(u.count(v)) {
        return u[v];
    }
    return u[v] = publish(v);
}

void solve(int N) {
    n = N;
    vector<int> p(n);
    for(int i = 0; i < n; i++) {
        p[i] = i + 1;
    }
    for(int i = 1; i < n; i++) {
        vector<int> a, b = {p[i]};
        for(int j = 0; j < n; j++) {
            if(i != j) {
                b.push_back(p[j]);
            }
            a.push_back(p[j]);
        }
        int tx = ask(a), ty = ask(b);
        int x = i - (tx - ty + i) / 2;

        vector<int> nw;
        for(int j = 0; j < x; j++) {
            nw.push_back(p[j]);
        }
        nw.push_back(p[i]);
        for(int j = x; j < n; j++) {
            if(j != i) nw.push_back(p[j]);
        }
        nw.swap(p);
    }
    answer(p);
}

컴파일 시 표준 에러 (stderr) 메시지

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) {
      |        ~~~~~~~~~^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...