답안 #913839

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
913839 2024-01-20T10:35:53 Z Nonoze Art Collections (BOI22_art) C++17
0 / 100
0 ms 344 KB
#include "art.h"
#include <bits/stdc++.h>
using namespace std;

void solve(int n) {
    vector<pair<int, int>> vec;
    vector<int> a(n);
    for (int i=0; i<n; i++) a[i]=i+1;
    vec.push_back({publish(a), 1});
    int lst=vec.back().first;
    for (int i=1; i<n; i++) {
        vector<int> neww;
        for (int j=1; j<n; j++) neww.push_back(a[j]);
        neww.push_back(i);
        a=neww;
        lst=publish(a);
        vec.back().first-=lst;
        vec.push_back({lst, i+1});
    }
    vec.back().first-=vec[0].first;
    sort(vec.begin(), vec.end());
    a.clear();
    for (auto u: vec) a.push_back(u.second);
    answer(a);
}

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 0 ms 344 KB Not correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Not correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Not correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Not correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Not correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Not correct
2 Halted 0 ms 0 KB -