답안 #926490

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
926490 2024-02-13T06:25:06 Z math_rabbit_1028 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<int> ans(N);
    vector<int> ord(N+1);

    for (int i = 1; i <= N; i++) {
        int a, b;
        vector<int> vec;
        vec.push_back(i);
        for (int j = 1; j <= N; j++) {
            if (i == j) continue;
            vec.push_back(j);
        }
        a = publish(vec);
        vec.erase(vec.begin());
        vec.push_back(i);
    }

    for (int i = 1; i <= N; i++) ans[ord[i]] = i;
    answer(ans);
}

Compilation message

art.cpp: In function 'void solve(int)':
art.cpp:10:13: warning: variable 'a' set but not used [-Wunused-but-set-variable]
   10 |         int a, b;
      |             ^
art.cpp:10:16: warning: unused variable 'b' [-Wunused-variable]
   10 |         int a, b;
      |                ^
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 -