Submission #640078

# Submission time Handle Problem Language Result Execution time Memory
640078 2022-09-13T14:02:15 Z victor_gao Super Dango Maker (JOI22_dango3) C++17
0 / 100
262 ms 916 KB
#include<bits/stdc++.h>
#include "dango3.h"
using namespace std;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
void Solve(int n,int m){
    int B[30]={0,1,1,1,1,1,2,2,2,3,3,3,3,3,4,4,4,4,4,5,5,5,5,5,5,5,5};
    deque<int>all;
    for (int i=1;i<=n*m;i++)
        all.push_back(i);
    for (int i=1;i<=m;i++){
        bool find=1;
        while (find){
            shuffle(all.begin(),all.end(),rng);
            vector<int>now;
            vector<int>ok;
            int sz=all.size();
            for (int j=0;j<sz/B[i];j++){
                now.push_back(all[sz+j-sz/B[i]]);
            }
            int Q=Query(now);
            if (Q==0) continue;
            else {
                int nsz=now.size();
                for (int i=0;i<nsz;i++){
                    int out=now.back();
                    now.pop_back();
                    all.pop_back();
                    int nq=Query(now),cnt=0;
                    if (nq==0){
                        now.push_back(out);
                        swap(now[cnt],now[now.size()-1]);
                        cnt++;
                    }
                    else all.push_front(out);
                    if (cnt>=now.size()) break;
                }
                if (now.size()!=n) assert(0);
                find=0;
                Answer(now);
            }
        }
    }
}

Compilation message

dango3.cpp: In function 'void Solve(int, int)':
dango3.cpp:35:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   35 |                     if (cnt>=now.size()) break;
      |                         ~~~^~~~~~~~~~~~
dango3.cpp:37:31: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   37 |                 if (now.size()!=n) assert(0);
      |                     ~~~~~~~~~~^~~
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 4 ms 596 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 56 ms 692 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 262 ms 916 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -