QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#154651#5507. Investorsberarchegas#WA 410ms144600kbC++171.7kb2023-08-31 20:26:512023-08-31 20:26:52

Judging History

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

  • [2023-08-31 20:26:52]
  • 评测
  • 测评结果:WA
  • 用时:410ms
  • 内存:144600kb
  • [2023-08-31 20:26:51]
  • 提交

answer

#include <bits/stdc++.h>
 
using namespace std;
using ll = long long;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
 
mt19937 rng((int) chrono::steady_clock::now().time_since_epoch().count());
    
const int MOD = 1e9 + 7;
const int MAXN = 2e5 + 5;
const ll INF = 2e18;

const int maxn = 6010;
const int inf = 1000000010;

int n, k;

int v[maxn];
int dp[2][maxn];
int sv[maxn][maxn];

int numInversions(int l, int r)
{
    int ans = sv[r][r] + sv[l - 1][l - 1];
    ans -= sv[r][l - 1] + sv[l - 1][r];

    return ans;
}

void divAndConquer(int line, int l, int r, int optmin, int optmax)
{
    if( l > r )
        return;

    int mid = (l + r)/2;
    int optmid = mid, optValue = dp[line^1][mid - 1];

    for(int i = optmin ; i <= optmax && i <= mid ; i++)
    {
        int curValue = dp[line^1][i - 1] + numInversions( i , mid );

        if( curValue < optValue )
            optValue = curValue, optmid = i;
    }

    dp[line][mid] = optValue;

    divAndConquer( line , l , mid - 1 , optmin , optmid );
    divAndConquer( line , mid + 1 , r , optmid , optmax );
}

void solve()
{
    cin >> n >> k;
    k++;

    for(int i = 1 ; i <= n ; i++)
        cin >> v[i];

    for(int i = 1 ; i <= n ; i++)
        for(int j = 1 ; j <= n ; j++)
            sv[i][j] = sv[i - 1][j] + sv[i][j - 1] - sv[i - 1][j - 1] + (v[i] > v[j] && i < j);

    for(int i = 0 ; i <= n ; i++)
        dp[1][i] = sv[i][i];

    for(int line = 2 ; line <= k ; line++)
        divAndConquer( line&1 , 1 , n , 1 , n );

    cout << dp[k%2][n] << "\n";
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int t;
    cin >> t;

    while( t-- )
        solve();

    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3832kb

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: 0
Accepted
time: 4ms
memory: 3824kb

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
13
13
23
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
34
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
8
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:

ok 349 lines

Test #3:

score: 0
Accepted
time: 31ms
memory: 17692kb

input:

6
1000 333
84886 84887 84732 83775 83776 83777 81234 80288 79661 79243 79244 78520 78521 78522 78523 78524 78525 79041 79042 78509 78120 77073 77432 77433 76111 75362 75363 75364 75365 75366 73979 73980 73981 73982 73983 73984 73472 73473 73075 72948 72949 72727 72728 72383 72384 72272 72273 72274 7...

output:

0
15
683
156
8
242025

result:

ok 6 lines

Test #4:

score: -100
Wrong Answer
time: 410ms
memory: 144600kb

input:

1
6000 1000
35 111 78 14 3 104 13 88 52 138 47 116 208 21 169 90 149 132 146 223 65 193 176 174 175 233 18 164 102 141 163 159 48 85 184 201 215 237 89 139 179 172 68 73 216 80 143 221 61 60 42 207 219 16 43 225 120 44 1 196 157 202 194 137 156 145 27 40 70 217 170 91 77 92 34 54 29 51 140 198 49 18...

output:

848

result:

wrong answer 1st lines differ - expected: '847', found: '848'