QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#546878#7964. 转化wangjingheng#WA 60ms22640kbC++20842b2024-09-04 15:18:002024-09-04 15:18:02

Judging History

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

  • [2024-09-04 15:18:02]
  • 评测
  • 测评结果:WA
  • 用时:60ms
  • 内存:22640kb
  • [2024-09-04 15:18:00]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
#define db long double
using namespace std;
const int N=5e5+10;
int a[N],b[N],c[N],f[N],s[N];
void solve(){
    int n;cin>>n;
    for(int i=1;i<=n;i++) cin>>a[i];
    for(int i=1;i<=n;i++) cin>>c[i];
    for(int i=1;i<=n;i++) cin>>b[i];
    for(int i=1;i<=n;i++){
        //转移
        int mid=c[i]-a[i];
        mid=max(0ll,mid);
        mid=min(mid,b[i]);
        f[i]=a[i]+mid;
        s[i]=f[i]+s[i-1];
    }
    for(int i=1;i<=n;i++){
        int res=a[i]+b[i]+s[n]-f[i];
        cout<<res;
        if(i!=n) cout<<" ";
    }
    int ans=0;
    cout<<"\n";
    for(int i=1;i<=n;i++){
        ans+=a[i]+b[i];
    }
    cout<<ans;
}

signed main(){
ios::sync_with_stdio(false);
cin.tie(0);cout.tie(0);
//    int T;cin>>T;
//    while(T--)
    solve();
}

详细

Test #1:

score: 0
Wrong Answer
time: 60ms
memory: 22640kb

input:

351493
0 37836791 46095966 46912389 21595941 0 3 86568894 3 0 0 0 0 39910208 0 2 4 86885825 1 67660833 0 24488082 52447896 0 67190942 70457491 11166998 90470470 11095822 0 0 5 47222930 2 49736354 0 0 0 77339472 0 5 3 0 25347727 0 3 2 0 48844622 0 65142757 1 73733079 80634668 46683173 0 31644647 9760...

output:

60181916435725 60181423762206 60181423762206 60181433113703 60181423762206 60181740123331 60181479514566 60181423762206 60181795744665 60181735565154 60181423762206 60181423762206 60181900051986 60181423762206 60181423762206 60181618571447 60181501719931 60181423762206 60181582934331 60181423762206 ...

result:

wrong answer 1st lines differ - expected: '60073965049724 60073472376204 ...4 60073701685447 60073472376204', found: '60181916435725 60181423762206 ...6 60181653071448 60181423762206'