제출 #705337

#제출 시각아이디문제언어결과실행 시간메모리
705337cig32The Collection Game (BOI21_swaps)C++17
100 / 100
20 ms492 KiB
#include "swaps.h"
#include "bits/stdc++.h"
using namespace std;


mt19937_64 rng((int) std::chrono::steady_clock::now().time_since_epoch().count());
int rnd(int x, int y) {
  return uniform_int_distribution<int>(x, y)(rng);
}
int p[501], pos[501];
void solve(int N, int V) {
  // TODO implement this function
  for(int i=1; i<=N; i++) p[i] = pos[i] = i;
  for(int k=2; k<=(N<<1); k<<=1) {
    vector<pair<int,int> > queries;
    for(int i=0; i<N; i++) {
      int l = i ^ (k-1);
      if(i<l && l<N) {
        queries.push_back({p[i+1], p[l+1]});
      }
    }
    for(pair<int,int> x: queries) schedule(x.first,x.second);
    vector<int> res = visit();
    for(int i=0; i<res.size(); i++) {
      if(res[i] == 0) {
        // Then A[i] > A[j]
        swap(p[pos[queries[i].first]], p[pos[queries[i].second]]);
        for(int j=1; j<=N; j++) pos[p[j]] = j;
      }
    }
    for(int j=k>>2; j>=1; j>>=1) {
      queries.clear();
      for(int i=0; i<N; i++) {
        int l = i^j;
        if(i<l && l<N) {
          queries.push_back({p[i+1], p[l+1]});
        }
      }
      for(pair<int,int> x: queries) schedule(x.first,x.second);
      vector<int> res = visit();
      for(int i=0; i<res.size(); i++) {
        if(res[i] == 0) {
          // Then A[i] > A[j]
          swap(p[pos[queries[i].first]], p[pos[queries[i].second]]);
          for(int j=1; j<=N; j++) pos[p[j]] = j;
        }
      }
    }
  }
  
  vector<int> identity;
  for(int i=1; i<=N; i++) identity.push_back(p[i]);
  answer(identity);
}

컴파일 시 표준 에러 (stderr) 메시지

swaps.cpp: In function 'void solve(int, int)':
swaps.cpp:24:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   24 |     for(int i=0; i<res.size(); i++) {
      |                  ~^~~~~~~~~~~
swaps.cpp:41:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   41 |       for(int i=0; i<res.size(); i++) {
      |                    ~^~~~~~~~~~~
#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...
#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...