Submission #1120195

#TimeUsernameProblemLanguageResultExecution timeMemory
1120195vjudge1Art Collections (BOI22_art)C++17
20 / 100
146 ms512 KiB
#include "art.h"
#include <bits/stdc++.h>

using namespace std;
typedef long long ll;

vector<int> ord;
int cnt, n;

void solve(int N) {
    n = N;
    vector<int> p(n);
    for(int i = 0; i < n; i++) {
        p[i] = i + 1;
    }
    int cur = publish(p);
    for(int i = 1; i < n; i++) {
        int j = i - 1;
        swap(p[i], p[j]);
        int t = publish(p);
        while(j >= 0 && t < cur) {
            j--;
            if(j >= 0) swap(p[j], p[j + 1]);
            cur = t;
            t = publish(p);
        }
        if(j >= 0) {
            swap(p[j], p[j + 1]);
        }
    }
    answer(p);
}

Compilation message (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...