답안 #714251

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
714251 2023-03-24T07:09:39 Z vjudge1 Art Collections (BOI22_art) C++17
0 / 100
1 ms 208 KB
#include <bits/stdc++.h>
#include "art.h"

#define ll long long
#define pii pair<int, int>

using namespace std;


void solve(int N){
    int n = N;
    vector<int> ans(n + 1, 1);
    for (int i = 1; i <= n; i++)
    {
        for (int j = i + 1; j <= n; j++)
        {
            if(i == j) continue;
            vector<int> v = {i, j};
            for (int k = 1; k <= n; k++)
            {
                if(k == i || k == j) continue;
                v.emplace_back(k);
            }
            int p1 = publish(v);
            swap(v[0], v[1]);
            int p2 = publish(v);
            if(p1 > p2){
                ans[v[1]]++;
            }
            else{
                ans[v[0]]++;
            }
        }
    }
    vector<int> v(n);
    for (int i = 1; i <= n; i++)
    {
        v[ans[i]] = i;
    }
    answer(v);
}

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