제출 #714261

#제출 시각아이디문제언어결과실행 시간메모리
714261vjudge1Art Collections (BOI22_art)C++17
0 / 100
1 ms208 KiB
#include <bits/stdc++.h>
#include "art.h"
using namespace std;
void solve(int n){
    vector<int>v(n);
    for(int i = 0;i < n;++i)v[i] = i + 1;
    for(int i = 0;i < n;++i){
        for(int j = 0;j < n - 1;++j){
            int num = publish(v);
            swap(v[j], v[j + 1]);
            int num1 = publish(v);
            if(num < num1){
                j += 1;
                swap(v[j], v[j + 1]);
            }
        }
    }
    answer(v);
}

컴파일 시 표준 에러 (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...