結果

問題 No.1409 Simple Math in yukicoder
ユーザー 👑 emthrmemthrm
提出日時 2021-02-26 22:14:26
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,322 bytes
コンパイル時間 1,911 ms
コンパイル使用メモリ 203,476 KB
実行使用メモリ 13,752 KB
最終ジャッジ日時 2024-04-10 12:59:32
合計ジャッジ時間 7,061 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,752 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 926 ms
6,944 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 1000000007;
// constexpr int MOD = 998244353;
constexpr int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
constexpr int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

long long mod_pow(long long base, long long exponent, int mod) {
  base %= mod;
  long long res = 1;
  while (exponent > 0) {
    if (exponent & 1) (res *= base) %= mod;
    (base *= base) %= mod;
    exponent >>= 1;
  }
  return res;
}

// https://www.duo.uio.no/bitstream/handle/10852/78712/Master_s_Thesis_Emilie_Fostvedt_final.pdf
int main() {
  int t; cin >> t;
  while (t--) {
    int v, x; cin >> v >> x;
    int p = x * v + 1;
    unordered_set<int> residue;
    FOR(i, 1, p) residue.emplace(mod_pow(i, v, p));
    vector<int> a(residue.begin(), residue.end());
    sort(ALL(a));
    assert(a.size() == x);
    REP(i, x) cout << a[i] << " \n"[i + 1 == x];
  }
  return 0;

  // int xv = x * v;
  // vector p(xv + 1, vector(x + 1, 1));
  // FOR(i, 1, xv + 1) FOR(j, 1, x + 1) p[i][j] = (p[i][j - 1] * i) % (xv + 1);
  // auto f = [&](auto &&f, vector<int> &a, vector<ll> &s) -> void {
  //   if (a.size() == x) {
  //     FOR(i, 1, x) {
  //       if (s[i] % (xv + 1) > 0) return;
  //     }
  //     if (s[x] % (xv + 1) == x) {
  //       REP(i, x) cout << a[i] << " \n"[i + 1 == x];
  //     }
  //     return;
  //   }
  //   FOR(i, a.empty() ? 1 : a.back() + 1, xv + 1) {
  //     a.emplace_back(i);
  //     FOR(j, 1, x + 1) s[j] += p[i][j];
  //     f(f, a, s);
  //     FOR(j, 1, x + 1) s[j] -= p[i][j];
  //     a.pop_back();
  //   }
  // };
  // vector<int> a;
  // vector<ll> s(x + 1, 0);
  // f(f, a, s);
}
0