QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#105324#5507. Investorspdstiago#WA 39ms3396kbC++141.7kb2023-05-13 22:10:242023-05-13 22:10:27

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-05-13 22:10:27]
  • 评测
  • 测评结果:WA
  • 用时:39ms
  • 内存:3396kb
  • [2023-05-13 22:10:24]
  • 提交

answer

#include "bits/stdc++.h"
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/assoc_container.hpp>

using namespace __gnu_pbds;
using namespace std;

#define mxn 1e5+5
#define fastio ios_base::sync_with_stdio(false), cin.tie(nullptr)
#define endl '\n'
typedef long long ll;
using pii = pair<int,int>;
using tlll = tuple<ll,ll,ll>;

typedef tree<ll, null_type, less_equal<ll>, rb_tree_tag, tree_order_statistics_node_update> multiordered_set;


int solve(){
    int n, k;
    cin >> n >> k;

    vector<ll> a(n);
    for(ll &ai : a) cin >> ai;

    while(k--) {
        multiordered_set msa, msd;
        map<ll, int> occur_a;
        vector<int> dp(n+1, 0);
        for(int i = 0; i < n; i++) {
            msa.insert(a[i]);
            occur_a[a[i]]++;
        }

        tlll ans = {-1,-1, -1};

        for(int i = n-1; i > 0; i--) {
            int menores_depois = msd.order_of_key(a[i]);
            msd.insert(a[i]);

            msa.erase(msa.upper_bound(a[i]));
            occur_a[a[i]]--;
            int maiores_antes = msa.size() - (msa.order_of_key(a[i]) + occur_a[a[i]]);

            dp[i] = dp[i+1] + maiores_antes - menores_depois;
            ans = max(ans, make_tuple(ll(dp[i]),ll(i), *msa.rbegin()));
        }

        for(int i = get<1>(ans); i < n; i++) {
            a[i] += get<2>(ans);
        }
    }

    ll ans = 0;
    multiordered_set ms;
    map<ll, int> occur;
    
    for(int i = 0; i < n; i++) {    
        ans += i - (ms.order_of_key(a[i]) + occur[a[i]]);
        ms.insert(a[i]);
        occur[a[i]]++;
    }

    cout << ans << '\n';

    return 0;
}

int main(){
    fastio;

    int t; 
    cin >> t;

    while(t--){
        solve();
    }

    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 2ms
memory: 3396kb

input:

2
6 1
4 5 6 2 2 1
6 2
4 5 6 2 2 1

output:

2
0

result:

ok 2 lines

Test #2:

score: -100
Wrong Answer
time: 39ms
memory: 3376kb

input:

349
6 2
2 1 2 1 2 1
48 12
42 47 39 39 27 25 22 44 45 13 5 48 38 4 37 6 24 10 42 38 12 37 31 19 44 6 29 17 7 12 7 26 35 24 15 9 37 3 27 21 33 29 34 20 14 30 31 21
48 12
1 43 17 46 17 39 40 22 25 2 22 12 4 11 38 12 4 11 1 5 39 44 37 10 19 20 42 45 2 45 37 20 48 34 16 41 23 18 13 44 47 21 29 4 23 18 16...

output:

1
18
15
145
0
2
1
0
14
13
24
0
0
0
1
0
0
0
0
0
0
0
0
161
3
0
0
1
0
0
0
0
0
0
1
0
3
0
0
1
0
0
1
0
0
1
4
0
0
0
0
0
0
0
0
2
0
2
0
0
8
280
0
0
35
4
0
1
0
0
3
0
0
0
0
0
0
0
4
0
0
0
0
0
0
0
0
0
0
0
0
0
3
0
0
0
2
0
0
0
0
0
0
0
8
1
10
0
0
0
0
1
11
5
0
0
0
6
0
0
0
0
0
1
0
0
0
0
0
0
1
0
0
0
0
0
0
0
13
1
0
0
0...

result:

wrong answer 9th lines differ - expected: '13', found: '14'