結果
問題 | No.694 square1001 and Permutation 3 |
ユーザー | treeone |
提出日時 | 2018-06-08 23:02:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,892 bytes |
コンパイル時間 | 1,473 ms |
コンパイル使用メモリ | 167,036 KB |
実行使用メモリ | 14,952 KB |
最終ジャッジ日時 | 2024-06-30 10:57:55 |
合計ジャッジ時間 | 7,593 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, a, n) for(int i = a; i < n; i++) #define repr(i, a, b) for(int i = a; i >= b; i--) #define int long long #define all(a) a.begin(), a.end() #define chmax(x, y) x = max(x, y) #define chmin(x, y) x = min(x, y) using namespace std; typedef pair<int, int> P; const int mod = 1000000007; const int INF = 1e12; struct BIT{ int N; vector<int> dat; BIT() {} BIT(int n) { N = n; dat.resize(N + 1); } // update k th element (0-index) void add(int k, int x){ k++; while(k <= N){ dat[k] += x; k += k&-k; } } // sum [0, k) (0-index) int sum(int k){ int s = 0; while(k > 0){ s += dat[k]; k -= k&-k; } return s; } // sum [a, b) (0-index) int query(int a, int b){ return sum(b) - sum(a); } }; int n; int calc(vector<int> &a){ int res = 0; BIT bit(n); for(int j = 0; j < n; j++){ int tmp = j - bit.sum(a[j]); res += tmp; cout << tmp << endl; bit.add(a[j], 1); } return res; } signed main(){ ios::sync_with_stdio(false); cin.tie(0); cin >> n; vector<int> a(n); rep(i, 0, n) cin >> a[i]; vector<int> b = a; sort(all(b)); b.erase(unique(all(b)), b.end()); rep(i, 0, n){ a[i] = lower_bound(all(b), a[i]) - b.begin(); } // for(int ii = 0; ii < a.size(); ii++){ // if(ii) cout << ' '; // cout << a[ii]; // } // cout << endl; // int sw = calc(a); int res = 0; BIT bit(n); for(int j = 0; j < n; j++){ int tmp = j - bit.sum(a[j]); res += tmp; bit.add(a[j], 1); } cout << res << endl; for(int j = 0; j < n - 1; j++){ int tmp = n - 1 - a[j] - a[j]; res += tmp; cout << res << endl; } }