Submission #581246

# Submission time Handle Problem Language Result Execution time Memory
581246 2022-06-22T12:21:18 Z alontanay The Collection Game (BOI21_swaps) C++14
3 / 100
61 ms 288 KB
//
// --- Sample implementation for the task swaps ---
//
// To compile this program with the sample grader, place:
//     swaps.h swaps_sample.cpp sample_grader.cpp
// in a single folder and run:
//     g++ swaps_sample.cpp sample_grader.cpp
// in this folder.
//
#include "swaps.h"
#include <bits/stdc++.h>
#define f first
#define s second

using namespace std;
using pi = pair<int,int>;

void solve(int N, int V) {
    for(int i = 1; i <= N; i ++) {
        for(int j = i + 1; j <= N; j ++) {
            schedule(i,j);
            visit();
        }
    }
    vector<int> res(N);
    for(int i = 0; i < N; i ++) {
        res[i] = i+1;
    }
    answer(res);
}

/*
g++ swaps2.cpp grader.cpp -o g.exe && g.exe
5 1000
2 1 5 3 4
1
1
*/

/*
4 1 5 3 4

*/
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 KB Not correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 208 KB Not correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 208 KB Correct
2 Correct 50 ms 288 KB Correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 208 KB Correct
2 Correct 50 ms 288 KB Correct
3 Incorrect 2 ms 208 KB Not correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 208 KB Correct
2 Correct 61 ms 208 KB Correct
3 Runtime error 23 ms 280 KB Execution killed with signal 13
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 208 KB Correct
2 Correct 61 ms 208 KB Correct
3 Runtime error 23 ms 280 KB Execution killed with signal 13
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 208 KB Correct
2 Correct 38 ms 208 KB Correct
3 Runtime error 41 ms 208 KB Execution killed with signal 13
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 208 KB Correct
2 Correct 38 ms 208 KB Correct
3 Runtime error 41 ms 208 KB Execution killed with signal 13
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 208 KB Correct
2 Correct 46 ms 208 KB Correct
3 Runtime error 56 ms 276 KB Execution killed with signal 13
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 208 KB Correct
2 Correct 46 ms 208 KB Correct
3 Runtime error 56 ms 276 KB Execution killed with signal 13
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 208 KB Correct
2 Correct 24 ms 256 KB Correct
3 Runtime error 58 ms 280 KB Execution killed with signal 13
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 208 KB Correct
2 Correct 24 ms 256 KB Correct
3 Runtime error 58 ms 280 KB Execution killed with signal 13
4 Halted 0 ms 0 KB -