結果

問題 No.2732 Similar Permutations
ユーザー risujirohrisujiroh
提出日時 2024-04-19 21:55:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 3,185 bytes
コンパイル時間 3,789 ms
コンパイル使用メモリ 287,004 KB
実行使用メモリ 5,932 KB
最終ジャッジ日時 2024-04-19 21:55:42
合計ジャッジ時間 22,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 17 ms
5,376 KB
testcase_03 AC 32 ms
5,376 KB
testcase_04 AC 11 ms
5,376 KB
testcase_05 AC 11 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 23 ms
5,376 KB
testcase_08 AC 12 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 51 ms
5,608 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 55 ms
5,620 KB
testcase_20 AC 56 ms
5,740 KB
testcase_21 AC 54 ms
5,620 KB
testcase_22 AC 31 ms
5,376 KB
testcase_23 AC 52 ms
5,752 KB
testcase_24 AC 31 ms
5,376 KB
testcase_25 AC 54 ms
5,748 KB
testcase_26 AC 45 ms
5,376 KB
testcase_27 AC 54 ms
5,752 KB
testcase_28 AC 42 ms
5,376 KB
testcase_29 AC 50 ms
5,748 KB
testcase_30 AC 37 ms
5,376 KB
testcase_31 AC 49 ms
5,624 KB
testcase_32 AC 49 ms
5,688 KB
testcase_33 AC 51 ms
5,744 KB
testcase_34 AC 32 ms
5,376 KB
testcase_35 AC 50 ms
5,744 KB
testcase_36 AC 47 ms
5,560 KB
testcase_37 AC 52 ms
5,748 KB
testcase_38 AC 47 ms
5,388 KB
testcase_39 AC 54 ms
5,624 KB
testcase_40 AC 42 ms
5,376 KB
testcase_41 AC 51 ms
5,748 KB
testcase_42 AC 37 ms
5,376 KB
testcase_43 AC 50 ms
5,676 KB
testcase_44 AC 28 ms
5,376 KB
testcase_45 AC 53 ms
5,872 KB
testcase_46 AC 46 ms
5,540 KB
testcase_47 AC 51 ms
5,744 KB
testcase_48 AC 32 ms
5,376 KB
testcase_49 AC 49 ms
5,748 KB
testcase_50 AC 29 ms
5,376 KB
testcase_51 AC 46 ms
5,748 KB
testcase_52 AC 42 ms
5,376 KB
testcase_53 AC 51 ms
5,760 KB
testcase_54 AC 51 ms
5,840 KB
testcase_55 AC 53 ms
5,932 KB
testcase_56 AC 53 ms
5,688 KB
testcase_57 AC 27 ms
5,376 KB
testcase_58 AC 39 ms
5,376 KB
testcase_59 AC 34 ms
5,376 KB
testcase_60 AC 31 ms
5,376 KB
testcase_61 AC 29 ms
5,376 KB
testcase_62 AC 41 ms
5,376 KB
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
testcase_65 AC 2 ms
5,376 KB
testcase_66 AC 2 ms
5,376 KB
testcase_67 AC 2 ms
5,376 KB
testcase_68 AC 1 ms
5,376 KB
testcase_69 AC 2 ms
5,376 KB
testcase_70 AC 2 ms
5,376 KB
testcase_71 AC 2 ms
5,376 KB
testcase_72 WA -
testcase_73 WA -
testcase_74 AC 2 ms
5,376 KB
testcase_75 AC 2 ms
5,376 KB
testcase_76 AC 2 ms
5,376 KB
testcase_77 AC 2 ms
5,376 KB
testcase_78 WA -
testcase_79 AC 2 ms
5,376 KB
testcase_80 AC 2 ms
5,376 KB
testcase_81 AC 2 ms
5,376 KB
testcase_82 AC 2 ms
5,376 KB
testcase_83 WA -
testcase_84 AC 2 ms
5,376 KB
testcase_85 AC 2 ms
5,376 KB
testcase_86 AC 2 ms
5,376 KB
testcase_87 AC 2 ms
5,376 KB
testcase_88 AC 2 ms
5,376 KB
testcase_89 AC 2 ms
5,376 KB
testcase_90 AC 2 ms
5,376 KB
testcase_91 WA -
testcase_92 AC 2 ms
5,376 KB
testcase_93 AC 2 ms
5,376 KB
testcase_94 AC 2 ms
5,376 KB
testcase_95 AC 2 ms
5,376 KB
testcase_96 AC 2 ms
5,376 KB
testcase_97 AC 2 ms
5,376 KB
testcase_98 AC 2 ms
5,376 KB
testcase_99 AC 2 ms
5,376 KB
testcase_100 AC 3 ms
5,376 KB
testcase_101 AC 2 ms
5,376 KB
testcase_102 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#if __INCLUDE_LEVEL__ == 0

#include __BASE_FILE__

namespace {

void solve() {
  int n;
  scan(n);
  std::vector<int> a(n);
  scan(a);

  if (n == 1) {
    print(-1);
    return;
  }

  if (n == 2) {
    if (((a[0] + 1) ^ (a[1] + 2)) == ((a[0] + 2) ^ (a[1] + 1))) {
      print(1, 2);
      print(2, 1);
    } else {
      print(-1);
    }
    return;
  }

  std::vector<std::vector<int>> v(2);
  for (const int i : rep(n)) {
    v[a[i] % 2].push_back(i);
  }
  const int parity = len(v[0]) == 1 ? 1 : 0;

  std::vector<int> ans(n, -1);

  int nxt = 1;

  for (const int i : rep(n)) {
    if (i == v[parity][0]) {
      ans[i] = 2;
    } else if (i == v[parity][1]) {
      ans[i] = 3;
    } else {
      ans[i] = nxt;
      if (nxt == 1) {
        nxt += 3;
      } else {
        ++nxt;
      }
    }
  }

  print(ans);
  std::iter_swap(ranges::find(ans, 2), ranges::find(ans, 3));
  print(ans);
}

}  // namespace

int main() {
  std::ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  std::cout << std::setprecision(DBL_DECIMAL_DIG);

  solve();
}

#else  // __INCLUDE_LEVEL__

#include <bits/stdc++.h>

template <class T, class U = T>
bool chmin(T& x, U&& y) {
  return y < x && (x = std::forward<U>(y), true);
}

template <class T, class U = T>
bool chmax(T& x, U&& y) {
  return x < y && (x = std::forward<U>(y), true);
}

template <std::signed_integral T = int>
T inf() {
  T ret;
  std::memset(&ret, 0x3f, sizeof(ret));
  return ret;
}

template <std::floating_point T>
T inf() {
  return std::numeric_limits<T>::infinity();
}

template <class T>
concept Range = std::ranges::range<T> && !std::convertible_to<T, std::string_view>;

template <class T>
concept Tuple = std::__is_tuple_like<T>::value && !Range<T>;

namespace std {

istream& operator>>(istream& is, Range auto&& r) {
  for (auto&& e : r) {
    is >> e;
  }
  return is;
}

istream& operator>>(istream& is, Tuple auto&& t) {
  return apply([&](auto&... xs) -> istream& { return (is >> ... >> xs); }, t);
}

ostream& operator<<(ostream& os, Range auto&& r) {
  for (string_view sep = ""; auto&& e : r) {
    os << exchange(sep, " ") << e;
  }
  return os;
}

ostream& operator<<(ostream& os, Tuple auto&& t) {
  const auto f = [&](auto&... xs) -> ostream& {
    [[maybe_unused]] string_view sep = "";
    ((os << exchange(sep, " ") << xs), ...);
    return os;
  };
  return apply(f, t);
}

}  // namespace std

void scan(auto&&... xs) { std::cin >> std::tie(xs...); }
void print(auto&&... xs) { std::cout << std::tie(xs...) << '\n'; }

template <class F>
class fix {
 public:
  explicit fix(F f) : f_(std::move(f)) {}

  decltype(auto) operator()(auto&&... xs) const {
    return f_(std::ref(*this), std::forward<decltype(xs)>(xs)...);
  }

 private:
  F f_;
};

inline auto rep(int l, int r) { return std::views::iota(std::min(l, r), r); }
inline auto rep(int n) { return rep(0, n); }
inline auto rep1(int l, int r) { return rep(l, r + 1); }
inline auto rep1(int n) { return rep(1, n + 1); }

using namespace std::literals;

namespace ranges = std::ranges;
namespace views = std::views;

using i64 = std::int64_t;

#define len(...) static_cast<int>(ranges::size(__VA_ARGS__))

#endif  // __INCLUDE_LEVEL__
0