QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#398964#8050. Random Permutationucup-team173WA 1807ms5232kbC++231018b2024-04-25 20:29:042024-04-25 20:29:05

Judging History

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

  • [2024-04-25 20:29:05]
  • 评测
  • 测评结果:WA
  • 用时:1807ms
  • 内存:5232kb
  • [2024-04-25 20:29:04]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define pb push_back
#define ll long long
#define mpr make_pair
#define fi first
#define se second
#define db double
// #define int long long

const int maxn=3e5+10;
int n;
int p[maxn];
const int lim=700;
int t[lim*2+10],pos[maxn];
void solve(){
    cin>>n;
    for(int i=1;i<=n;i++)cin>>p[i],pos[p[i]]=i;
    ll ans=0;
    for(int w=1;w<=n;w++){
        int i=p[w];
        fill(t,t+lim*2+10,0);
        int cur=lim;
        for(int r=w;r<=n;r++){
            cur+=(p[r]>p[w]?1:-1);
            if(cur<0||cur>lim*2)break;
            t[cur]++;
        }
        cur=1+lim;
        for(int l=w;l;l--){
            cur+=(p[l]>p[w]?1:-1);
            if(cur<2||cur>lim*2-2)break;
            ans+=(t[lim*2-cur]+t[lim*2-cur-1])*i;
        }
    }
    cout<<ans<<"\n";
    
}
signed main(){
    ios::sync_with_stdio(0);
    cin.tie(0),cout.tie(0);
    int t=1;
    // cin>>t;
    while(t--){
        solve();
    }
    return 0;
}

詳細信息

Test #1:

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

input:

4
1 4 2 3

output:

22

result:

ok 1 number(s): "22"

Test #2:

score: 0
Accepted
time: 812ms
memory: 4448kb

input:

100000
56449 21738 74917 44834 36187 96576 37204 28451 3444 13029 66039 8955 51445 30706 27229 37159 66052 16691 70389 29935 44984 3648 75082 73600 76621 28345 5298 37940 49412 85260 92029 18185 84398 10233 79227 98312 96649 30680 65206 38879 75397 26951 11294 58085 37297 97167 59252 44104 4058 3796...

output:

250202478701074

result:

ok 1 number(s): "250202478701074"

Test #3:

score: -100
Wrong Answer
time: 1807ms
memory: 5232kb

input:

200000
70900 189146 39056 135530 191967 133789 108558 81993 132081 113826 54456 127761 27836 64897 87159 105191 109446 81230 75525 90396 75756 50200 43091 151358 100791 193998 157161 119352 176873 120724 134471 155040 138534 182263 161855 4577 124893 199710 60764 146460 75314 43696 129155 64816 1390...

output:

1991174614830236

result:

wrong answer 1st numbers differ - expected: '1998651699409551', found: '1991174614830236'