結果
問題 | No.1188 レベルX門松列 |
ユーザー | zeronosu77108 |
提出日時 | 2020-08-22 15:06:03 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,558 bytes |
コンパイル時間 | 1,079 ms |
コンパイル使用メモリ | 140,000 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 09:23:13 |
合計ジャッジ時間 | 2,102 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 8 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | WA | - |
testcase_23 | AC | 1 ms
5,248 KB |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <utility> #include <map> #include <algorithm> #include <queue> #include <cmath> #include <numeric> #include <set> using namespace std; struct aaa{aaa(){cin.tie(nullptr); ios::sync_with_stdio(false); cout<<fixed<<setprecision(20);};}aaa; template <class T>ostream &operator<<(ostream &o,const vector<T>&v){o<<"{";for(int i=0;i<(int)v.size();i++)o<<(i>0?", ":"")<<v[i];o<<"}";return o;} #define debug(v) {cerr<<"\033[1;36m[debug]\033[m "<<#v<<" : "<<v<<endl;} using int64 = long long; class BIT { int64 n; vector<int64> d; public: BIT(int64 _n=0) {n=_n; d.resize(n+1,0);} void add(int64 i, int64 x=1) { for (i++; i <= n; i += i&-i) d[i] += x; } int64 sum(int64 i) { int64 x = 0; for (i++; i; i -= i&-i) x += d[i]; return x; } void reset() {d.resize(n+1, 0);}; }; int main() { int64 n; cin >> n; vector a(n,0LL); int64 a_max = 0; for (int64 i=0; i<n; i++) { cin >> a[i]; a_max = max(a_max, a[i]); if (a[i] < 0) return 1; } // BIT bit(a_max+10); // vector l(n,0LL); // for (int64 i=0; i<n; i++) { // l[i] = i - bit.sum(a[i]); // bit.add(a[i]); // } // // bit.reset(); // vector r(n,0LL); // for (int64 i=n-1; i>=0; i--) { // r[n-1-i] = (n-1-i) - bit.sum(a[i]); // bit.add(a[i]); // } int64 ans = 0; // for (int i=1; i<n-1; i++) { // ans = max(ans, min(l[i], r[i])); // ans = max(ans, min(n/2-l[i], n/2-r[i])); // } cout << ans << endl; }