Submission #258248

# Submission time Handle Problem Language Result Execution time Memory
258248 2020-08-05T15:20:23 Z kimbj0709 ICC (CEOI16_icc) C++14
0 / 100
449 ms 560 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;
	            setRoad(a + 1, b + 1);
		    goto cont;
                }
            }
        }
 	cont : ;
        E[a][b] = true;

    }
}
# Verdict Execution time Memory Grader output
1 Incorrect 16 ms 512 KB Wrong road!
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 266 ms 556 KB Wrong road!
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 449 ms 560 KB Number of queries more than 4500 out of 2250
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 404 ms 512 KB Number of queries more than 4000 out of 2000
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 372 ms 560 KB Number of queries more than 3550 out of 1775
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 350 ms 556 KB Number of queries more than 3250 out of 1625
2 Halted 0 ms 0 KB -