結果
問題 | No.694 square1001 and Permutation 3 |
ユーザー | firiexp |
提出日時 | 2019-11-15 13:32:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 293 ms / 3,000 ms |
コード長 | 1,418 bytes |
コンパイル時間 | 1,177 ms |
コンパイル使用メモリ | 101,860 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-11-14 21:51:00 |
合計ジャッジ時間 | 5,937 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 145 ms
9,344 KB |
testcase_08 | AC | 237 ms
9,728 KB |
testcase_09 | AC | 285 ms
11,264 KB |
testcase_10 | AC | 130 ms
9,344 KB |
testcase_11 | AC | 293 ms
11,264 KB |
testcase_12 | AC | 290 ms
11,136 KB |
testcase_13 | AC | 2 ms
6,816 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <map> #include <set> #include <queue> #include <stack> #include <numeric> #include <bitset> #include <cmath> #include <limits> static const int MOD = 1000000007; using ll = long long; using u32 = uint32_t; using namespace std; template<class T> constexpr T INF = ::numeric_limits<T>::max() / 32 * 15 + 208; template<class T> class BIT { vector<T> bit; public: BIT(int n): bit(vector<T>(n+1, 0)){} T sum(int k){ T ret = 0; for (++k; k > 0; k -= (k & -k)) ret += bit[k]; return ret; } void add(int k, T x){ for (++k; k < bit.size(); k += (k & -k)) bit[k] += x; } }; int main() { int n; cin >> n; vector<int> v(n); for (auto &&i : v) scanf("%d", &i); auto u = v; sort(u.begin(), u.end()); u.erase(unique(u.begin(), u.end()), u.end()); for (int i = 0; i < n; ++i) { v[i] = lower_bound(u.begin(),u.end(), v[i])-u.begin(); } BIT<int> bit(n); ll ans = 0; for (int i = 0; i < n; ++i) { ans += i-bit.sum(v[i]); bit.add(v[i], 1); } vector<int> S(u.size()+1); for (int i = 0; i < n; ++i) { S[v[i]+1]++; } for (int i = 0; i < u.size(); ++i) { S[i+1] += S[i]; } for (int i = 0; i < n; ++i) { printf("%lld\n", ans); ans += (n-S[v[i]+1]-S[v[i]]); } return 0; }