답안 #604533

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
604533 2022-07-25T07:21:23 Z generic_placeholder_name CEOI16_icc (CEOI16_icc) C++17
61 / 100
166 ms 520 KB
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("avx,avx2,fma,popcnt")

#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/trie_policy.hpp>
#include <ext/rope>

using namespace std;
using namespace __gnu_pbds;
using namespace __gnu_cxx;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());

#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define mp make_pair
#define gcd __gcd
#define fastio ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
#define rep(i, n) for (int i=0; i<(n); i++)
#define rep1(i, n) for (int i=1; i<=(n); i++)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define endl "\n"

typedef long long ll;
typedef unsigned long long ull;
typedef unsigned uint;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
typedef vector<vector<int>> vvi;
typedef vector<ll> vll;
typedef vector<vector<ll>> vvll;
typedef vector<bool> vb;
typedef vector<vector<bool>> vvb;
template<typename T, typename cmp = less<T>>
using ordered_set = tree<T, null_type, cmp, rb_tree_tag, tree_order_statistics_node_update>;
typedef trie<string, null_type, trie_string_access_traits<>, pat_trie_tag, trie_prefix_search_node_update> pref_trie;

constexpr int N = 105;
int color[N];
bool ban[N][N];
vi adj[N];

void dfs(int u) {
    for(int v: adj[u]) if(!~color[v]) {
        color[v] = color[u];
        dfs(v);
    }
}

#include "icc.h"

int query(vi& a, vi& b) {
    return query(a.size(), b.size(), a.data(), b.data());
}

void run(int N) {
    int& n = N;
    rep(_, n - 1) {
        vi l, r;
        memset(ban, 0, sizeof(ban));
        while(1) {
            int mx = 0;
            rep(_, 10) {
                memset(color, -1, sizeof(color));
                rep1(i, n) if(!~color[i]) {
                    color[i] = rng() & 1;
                    dfs(i);
                }
                vi cl, cr;
                rep1(i, n) (color[i] ? cl : cr).pb(i);
                int cnt = 0;
                for(int x: cl) for(int y: cr) cnt += (ban[x][y] == 0);
                if(cnt > mx) mx = cnt, l = cl, r = cr;
            }
            if(query(l, r)) break;
            else {
                for(int x: l) for(int y: r) ban[x][y] = ban[y][x] = 1;
            }
        }
        while(l.size() > 1) {
            vi a, b;
            rep(i, l.size()) (i & 1 ? a : b).pb(l[i]);
            if(query(a, r)) l = a;
            else l = b;
        }
        while(r.size() > 1) {
            vi a, b;
            rep(i, r.size()) (i & 1 ? a : b).pb(r[i]);
            if(query(l, a)) r = a;
            else r = b;
        }
        int u = l[0], v = r[0];
        adj[u].pb(v);
        adj[v].pb(u);
        setRoad(u, v);
    }
}

Compilation message

icc.cpp: In function 'void run(int)':
icc.cpp:23:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   23 | #define rep(i, n) for (int i=0; i<(n); i++)
      |                                  ^
icc.cpp:89:13: note: in expansion of macro 'rep'
   89 |             rep(i, l.size()) (i & 1 ? a : b).pb(l[i]);
      |             ^~~
icc.cpp:23:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   23 | #define rep(i, n) for (int i=0; i<(n); i++)
      |                                  ^
icc.cpp:95:13: note: in expansion of macro 'rep'
   95 |             rep(i, r.size()) (i & 1 ? a : b).pb(r[i]);
      |             ^~~
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 468 KB Ok! 99 queries used.
2 Correct 4 ms 444 KB Ok! 96 queries used.
# 결과 실행 시간 메모리 Grader output
1 Correct 27 ms 468 KB Ok! 535 queries used.
2 Correct 41 ms 468 KB Ok! 729 queries used.
3 Correct 39 ms 496 KB Ok! 720 queries used.
# 결과 실행 시간 메모리 Grader output
1 Correct 104 ms 496 KB Ok! 1389 queries used.
2 Correct 166 ms 520 KB Ok! 1887 queries used.
3 Correct 100 ms 504 KB Ok! 1402 queries used.
4 Correct 125 ms 496 KB Ok! 1549 queries used.
# 결과 실행 시간 메모리 Grader output
1 Correct 118 ms 468 KB Ok! 1460 queries used.
2 Correct 114 ms 508 KB Ok! 1486 queries used.
3 Correct 148 ms 512 KB Ok! 1765 queries used.
4 Correct 99 ms 508 KB Ok! 1367 queries used.
# 결과 실행 시간 메모리 Grader output
1 Correct 150 ms 500 KB Ok! 1772 queries used.
2 Incorrect 156 ms 512 KB Too many queries! 1788 out of 1775
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 152 ms 496 KB Too many queries! 1780 out of 1625
2 Halted 0 ms 0 KB -