結果

問題 No.282 おもりと天秤(2)
ユーザー arktan763arktan763
提出日時 2020-02-06 16:53:40
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 5,921 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 170,076 KB
実行使用メモリ 24,324 KB
平均クエリ数 30.58
最終ジャッジ日時 2023-09-24 02:26:58
合計ジャッジ時間 5,559 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
23,412 KB
testcase_01 AC 21 ms
23,988 KB
testcase_02 AC 23 ms
24,000 KB
testcase_03 AC 24 ms
23,496 KB
testcase_04 AC 22 ms
23,388 KB
testcase_05 AC 23 ms
23,424 KB
testcase_06 AC 22 ms
23,424 KB
testcase_07 AC 20 ms
23,328 KB
testcase_08 AC 22 ms
23,400 KB
testcase_09 AC 20 ms
23,916 KB
testcase_10 AC 60 ms
24,324 KB
testcase_11 AC 136 ms
24,324 KB
testcase_12 AC 77 ms
23,484 KB
testcase_13 AC 103 ms
24,264 KB
testcase_14 AC 132 ms
23,928 KB
testcase_15 AC 142 ms
24,264 KB
testcase_16 AC 25 ms
23,340 KB
testcase_17 AC 92 ms
24,024 KB
testcase_18 AC 120 ms
23,340 KB
testcase_19 AC 122 ms
23,532 KB
testcase_20 AC 155 ms
23,388 KB
testcase_21 AC 144 ms
23,496 KB
testcase_22 AC 149 ms
24,072 KB
testcase_23 AC 21 ms
23,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define int long long
#define double long double
#define FOR(i, a, b) for(int i = (a); i < (b); ++i)
#define FORR(i, a, b) for(int i = (a); i > (b); --i)
#define REP(i, n) for(int i = 0; i < (n); ++i)
#define REPR(i, n) for(int i = n; i >= 0; i--)
#define FOREACH(x, a) for(auto &(x) : (a))
#define VECCIN(x)                                                              \
    for(auto &youso_ : (x)) cin >> youso_
#define bitcnt(x) __builtin_popcount(x)
#define lbit(x) __builtin_ffsll(x)
#define rbit(x) (64 - __builtin_clzll(x))
#define fi first
#define se second
#define All(a) (a).begin(), (a).end()
#define rAll(a) (a).rbegin(), (a).rend()
#define cinfast() cin.tie(0), ios::sync_with_stdio(false)
#define PERM(c)                                                                \
    sort(All(c));                                                              \
    for(bool cp = true; cp; cp = next_permutation(All(c)))
#define COMB(n, k)                                                             \
    for(ll bit = (1LL << k) - 1; bit < (1LL << n); bit = next_combination(bit))
#define PERM2(n, k)                                                            \
    COMB(n, k) {                                                               \
        vector<int> sel;                                                       \
        for(int bitindex = 0; bitindex < n; bitindex++)                        \
            if(bit >> bitindex & 1) sel.emplace_back(bitindex);                \
        PERM(sel) { Printv(sel); }                                             \
    }
#define MKORDER(n)                                                             \
    vector<int> od(n);                                                         \
    iota(All(od), 0LL);

template <typename T = long long> inline T IN() {
    T x;
    cin >> x;
    return (x);
}
inline void CIN() {}
template <class Head, class... Tail>
inline void CIN(Head &&head, Tail &&... tail) {
    cin >> head;
    CIN(move(tail)...);
}
template <class Head> inline void COUT(Head &&head) { cout << (head) << "\n"; }
template <class Head, class... Tail>
inline void COUT(Head &&head, Tail &&... tail) {
    cout << (head) << " ";
    COUT(forward<Tail>(tail)...);
}

#define CCIN(...)                                                              \
    char __VA_ARGS__;                                                          \
    CIN(__VA_ARGS__)
#define DCIN(...)                                                              \
    double __VA_ARGS__;                                                        \
    CIN(__VA_ARGS__)
#define LCIN(...)                                                              \
    long long __VA_ARGS__;                                                     \
    CIN(__VA_ARGS__)
#define SCIN(...)                                                              \
    string __VA_ARGS__;                                                        \
    CIN(__VA_ARGS__)
#define Printv(v)                                                              \
    {                                                                          \
        REP(hoge, v.size())                                                    \
        cout << v[hoge] << (hoge == v.size() - 1 ? "" : " ");                  \
        cout << "\n";                                                          \
    }
template <typename T = string> inline void eputs(T s) {
    cout << s << "\n";
    exit(0);
}
template <typename A, size_t N, typename T>
void Fill(A (&array)[N], const T &val) {
    std::fill((T *)array, (T *)(array + N), val);
}

long long next_combination(long long sub) {
    long long x = sub & -sub, y = sub + x;
    return (((sub & ~y) / x) >> 1) | y;
}

// generic lambdas
template <typename F>
#if defined(__has_cpp_attribute) && __has_cpp_attribute(nodiscard)
[[nodiscard]]
#elif defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ >= 4)
__attribute__((warn_unused_result))
#endif // defined(__has_cpp_attribute) && __has_cpp_attribute(nodiscard)
    static inline constexpr decltype(auto)
    fix(F &&f) noexcept {
    return [f = std::forward<F>(f)](auto &&... args) {
        return f(f, std::forward<decltype(args)>(args)...);
    };
}

template <typename T> using PQG = priority_queue<T, vector<T>, greater<T>>;
template <typename T> using PQ = priority_queue<T>;

typedef long long ll;
typedef vector<ll> VL;
typedef vector<VL> VVL;
typedef pair<ll, ll> PL;
typedef vector<PL> VPL;
typedef vector<bool> VB;
typedef vector<double> VD;
typedef vector<string> VS;

const int INF = 1e9;
const int MOD = 1e9 + 7;
// const int MOD = 998244353;
const ll LINF = 1e18;
const ll dw[] = {1, 1, 0, -1, -1, -1, 0, 1};
const ll dh[] = {0, 1, 1, 1, 0, -1, -1, -1};
#define PI 3.141592653589793230
#define EPS 1e-7

void query(const VL &q) {
    cout << "? ";
    Printv(q);
    cout << flush;
}

signed main() {
    LCIN(N);
    ll M = 0;
    while(1LL << M < N) M++;
    VL od(1LL << M);
    iota(od.begin(), od.begin() + N, 1LL);
    FOR(fb, 1, M + 1) REPR(sb, fb - 1) {
        VL q(2 * N), pos(2 * N);
        ll ptr = 0;
        REP(i, 1LL << M) {
            if((i >> fb & 1) ^ (i >> sb) & 1) {
                if(od[i] == 0) {
                    swap(od[i], od[i ^ (1LL << sb)]);
                    continue;
                } else if(od[i ^ (1LL << sb)] == 0) {
                    continue;
                }
                pos[ptr] = i;
                q[ptr++] = od[i];
                pos[ptr] = i ^ (1LL << sb);
                q[ptr++] = od[i ^ (1LL << sb)];
            }
        }
        query(q);
        REP(i, N) {
            CCIN(C);
            if(2 * i < ptr && C == '<')
                swap(od[pos[2 * i]], od[pos[2 * i + 1]]);
        }
    }
    VL ans;
    REP(i, 1LL << M) if(od[i]) ans.emplace_back(od[i]);
    cout << "! ";
    Printv(ans);
}
0