結果
問題 | No.1311 Reverse Permutation Index |
ユーザー | みうね |
提出日時 | 2024-09-11 00:58:51 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,500 ms |
コード長 | 1,532 bytes |
コンパイル時間 | 6,007 ms |
コンパイル使用メモリ | 307,476 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-11 00:58:58 |
合計ジャッジ時間 | 6,464 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 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 | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; // 長さnの順列のうち、辞書順でm番目(0-indexed)の順列(0-indexed)を返す. #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> vector<int> permutation(const int &n, const long long &m) { vector<int> r(n); long long d = m; for (int i = 0; i < n; ++i) { r[n - i - 1] = d % (i + 1); d /= i + 1; } __gnu_pbds::tree<int, __gnu_pbds::null_type, less<int>, __gnu_pbds::rb_tree_tag, __gnu_pbds::tree_order_statistics_node_update> s; for (int i = 0; i < n; ++i) s.insert(i); vector<int> p(n); for (int i = 0; i < n; ++i) { p[i] = *s.find_by_order(r[i]); s.erase(p[i]); } return p; } // 受け取った順列(0-indexed)の辞書順での順列番号(0-indexed)を返す. #include <atcoder/fenwicktree> template <typename T> T permorder(const vector<int> &p) { int n = p.size(); vector<T> f(n + 1, 1); for (int i = 1; i <= n; ++i) f[i] = f[i - 1] * i; atcoder::fenwick_tree<int> bit(n); T res = 0; for (int i = 0; i < n; ++i) { res += (p[i] - bit.sum(0, p[i])) * f[n - i - 1]; bit.add(p[i], 1); } return res; } // https://yukicoder.me/problems/no/1311 int main() { ll n; int s; cin >> n >> s; vector<int> p = permutation(s, n); vector<int> pinv(s); for (int i = 0; i < s; ++i) pinv[p[i]] = i; cout << permorder<ll>(pinv) << endl; }