結果

問題 No.241 出席番号(1)
ユーザー vjudge1vjudge1
提出日時 2024-12-05 20:08:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 648 ms / 2,000 ms
コード長 4,052 bytes
コンパイル時間 3,092 ms
コンパイル使用メモリ 249,708 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-05 20:15:33
合計ジャッジ時間 5,142 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 59 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 7 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 648 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// #pragma GCC optimize(1,2,3,"Ofast","inline")
// #pragma GCC optimize("O3,unroll-loops")
// #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
using namespace std;
#define int i64
#define FF first
#define SS second
#define SZ(x) ((i32)(x).size())
#define PB push_back
#define EB emplace_back
#define all(x) (x).begin(), (x).end()
using i128 = __int128_t;
using ui64 = uint64_t;
using i64 = int64_t;
using ui32 = uint32_t;
using i32 = int32_t;
using ld = long double;
using P32 = pair<i32, i32>;
using P64 = pair<i64, i64>;
const i64 INF = 1e18;
const ld eps = 1e-8L;

mt19937_64 mt(chrono::steady_clock::now().time_since_epoch().count());
i64 randint(i64 l, i64 r) { uniform_int_distribution<> dis(l, r); return dis(mt); }
// double randld(i64 l, i64 r) { uniform_real_distribution<> dis(l, r); return dis(mt); }
bool chmin(auto &a, auto b) { return (b < a) and (a = b, true); }
bool chmax(auto &a, auto b) { return (a < b) and (a = b, true); }

void debug() {}
template<class T> void debug(T var) { cerr << var; }
template<class T, class ...P> void debug(T var, P ...t) { cerr << var << ", "; debug(t...); }
template<class T> void org(T l, T r) { while(l != r) cerr << *l++ << ' '; }
#define de(...) { cerr << "[Line: " << __LINE__ << "][" << #__VA_ARGS__ << "] -> [", debug(__VA_ARGS__), cerr << "]\n"; }
#define orange(...) { cerr << "[Line: " << __LINE__ << "][" << #__VA_ARGS__ << "] -> [", org(__VA_ARGS__), cerr << "]\n"; }

const i32 msize = 200000;
char buf[msize], *p1 = buf, *p2 = buf;
char obuf[msize], *p3 = obuf;
#define getc() (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, msize, stdin), p1 == p2) ? EOF : *p1++)
#define putac(x) (p3 - obuf < msize) ? (*p3 ++ = x) :(fwrite(obuf, p3 - obuf, 1, stdout), p3 = obuf, *p3 ++ = x)
template<class T> inline void read(T &x) {
    x = 0;
    i32 f = 1;
    char ch = getc();
    for (; ch < 48 || ch > 57; ch = getc()) if (ch == '-') f = -1;
    for (; ch >= 48 && ch <= 57; ch = getc()) x = (x << 3) + (x << 1) + (ch ^ 0x30);
    x = x * f;
}
template<class T> void write(const T &x) {
    static i32 c[40];
    if (!x) { putac('0'); return; }
    i32 len = 0;
    T k1 = x;
    if (k1 < 0) k1 = -k1, putac('-');
    while (k1) c[len++] = k1 % 10 ^ 48, k1 /= 10;
    while (len--) putac(c[len]);
}
void write(const char *str) { while (*str) putac(*str++); }
void write(const string &str) { for (char c : str) putac(c); }
void write(const char &c) { putac(c); }
template<typename T, typename... Args>
inline void read(T &x, Args&... args) {
    read(x);  // ???????
    (read(args), ...); // ?????????
}
template<typename T, typename... Args>
inline void write(const T &x, const Args&... args) {
    write(x);
    write(args...);
}
// ?
//           ????
// ????  |   _? _l
// ? ????` ??X?
// ?? ? /??? ?|
// ??? /? ??? ?
// ? ? ???|?|?|
// ???|?? |?|?|
// ?| (???_?_)__)
// ????
// ?
void OUO();
i32 main() {
    // ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
    i32 t = 1;
    for (i32 tt = 0; tt < t; tt++){
        OUO();
    }
    fwrite(obuf, p3 - obuf, 1, stdout);
}

void OUO() {
    i32 n; read(n);
    vector<i32> vec(n), aa(n);
    for (auto &x : vec) read(x);
    for (i32 i = 0; i < n; i++) aa[i] = i;

    bool flag = 0;
    for (i32 i = 0; i < 1000000; i++) {
        shuffle(aa.begin(), aa.end(), mt);
        bool iscon = 0;
        for (i32 i = 0; i < n; i++) if (aa[i] == vec[i]) {
            iscon = 1;
            break;
        }
        if (iscon) continue;
        flag = 1;
        break;
    }
    if (flag) for (i32 i = 0; i < n; i++) write(aa[i], ' ');
    else write(-1, '\n');
}
// ?????????????????????????????? 
// ?????????????????????????????? 
// ?????????????????????????????? 
// ?????????????????????????????? 
// ?????????????????????????????? 
// ?????????????????????????????? 
// ?????????????????????????????? 
// ?????????????????????????????? 
// ?????????????????????????????? 
// ?????????????????????????????? 
// ?????????????????????????????? 
// ?????????????????????????????? 
// ??????????????????????????????
0