Submission #402473

# Submission time Handle Problem Language Result Execution time Memory
402473 2021-05-11T18:44:17 Z doowey The Collection Game (BOI21_swaps) C++14
0 / 100
1 ms 200 KB
#include <bits/stdc++.h>
#include "swaps.h"

using namespace std;

typedef long long ll;
typedef pair<int, int> pii;

#define fi first
#define se second
#define mp make_pair
#define fastIO ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);

void solve(int n, int q) {
    vector<int> ord;
    for(int i = 0 ; i < n; i ++ )
        ord.push_back(i);
    int cc;
    for(int go = 0; go < n; go ++ ){
        if(go % 2 == 0){
            for(int i = 0 ; i + 1 < n; i += 2){
                schedule(ord[i], ord[i + 1]);
            }
            vector<int> cha = visit();
            cc = 0;
            for(int i = 0; i + 1 < n; i += 2){
                if(cha[cc] == 0) swap(ord[i], ord[i + 1]);
                cc ++ ;
            }
        }
        else{
            for(int i = 1 ; i + 1 < n; i += 2){
                schedule(ord[i], ord[i + 1]);
            }
            vector<int> cha = visit();
            cc = 0;
            for(int i = 1; i + 1 < n; i += 2){
                if(cha[cc] == 0) swap(ord[i], ord[i + 1]);
                cc ++ ;
            }
        }
    }
    answer(ord);
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 200 KB Not correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 200 KB Not correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 200 KB Not correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 200 KB Not correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 200 KB Not correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 200 KB Not correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 200 KB Not correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 200 KB Not correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 200 KB Not correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 200 KB Not correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 200 KB Not correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 200 KB Not correct
2 Halted 0 ms 0 KB -