Submission #258250

# Submission time Handle Problem Language Result Execution time Memory
258250 2020-08-05T15:21:00 Z Tc14 ICC (CEOI16_icc) C++17
7 / 100
465 ms 632 KB
//#pragma GCC optimize("O3")
#include <bits/stdc++.h>
#include "icc.h"
using namespace std;
#define ve vector
typedef long long ll;
typedef pair<int, int> pii;
 
void run(int n) {
 
    int r, a, b, A[1], B[1];
    bool E[15][15] = {};
 
    for (int i = 0; i < n - 1; i++) {
 
        a = -1;
        b = -1;
 
        for (int j = 0; j < n; j++) {
            for (int k = 0; k < j; k++) {
                A[0] = j + 1;
                B[0] = k + 1;
                r = query(1, 1, A, B);
                if (r == 1 && !E[j][k]) {
                    a = j;
                    b = k;
                    E[j][k] = true;
                }
            }
        }
 
        setRoad(a + 1, b + 1);
    }
}
# Verdict Execution time Memory Grader output
1 Correct 135 ms 512 KB Ok! 1470 queries used.
2 Correct 124 ms 632 KB Ok! 1470 queries used.
# Verdict Execution time Memory Grader output
1 Incorrect 374 ms 512 KB Number of queries more than 5000 out of 2500
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 465 ms 512 KB Number of queries more than 4500 out of 2250
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 422 ms 560 KB Number of queries more than 4000 out of 2000
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 396 ms 512 KB Number of queries more than 3550 out of 1775
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 359 ms 632 KB Number of queries more than 3250 out of 1625
2 Halted 0 ms 0 KB -