QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#627803 | #8237. Sugar Sweet II | Albert711 | WA | 119ms | 7756kb | C++20 | 1.7kb | 2024-10-10 17:13:39 | 2024-10-10 17:13:40 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ll long long
#define db double
const int mod=1e9+7;
const int N=5e5+5;
int inv[N];
int fp(int ba,int pow){
int r=1;
while(pow){
if(pow&1) r=r*ba%mod;
ba=ba*ba%mod;
pow>>=1;
}
return r;
}
vector<int> a;
vector<int> b;
vector<int> w;
vector<int> in;
vector<vector<int> > ed;
void abt(){
int n;
cin>>n;
ed=vector<vector<int> > (n+1);
a=vector<int> (n+1);
b=vector<int> (n+1);
w=vector<int> (n+1);
in=vector<int> (n+1);
for(int i=1;i<=n;i++) cin>>a[i];
for(int i=1;i<=n;i++) cin>>b[i];
for(int i=1;i<=n;i++) cin>>w[i];
for(int i=1;i<=n;i++){
if(b[i]==i) continue;
if(a[b[i]]>a[i]){
a[i]=(a[i]+w[i])%mod;
}else if(a[b[i]]+w[b[i]]<=a[i]){
continue;
}else{
in[i]++;
ed[b[i]].push_back(i);
}
}
queue<pair<int,int>> q;
for(int i=1;i<=n;i++){
if(in[i]==0) q.push({i,1});
}
while(!q.empty()){
auto now=q.front();
q.pop();
for(auto i:ed[now.first]){
a[i]=(a[i]+w[i]*inv[now.second+1]%mod)%mod;
q.push({i,now.second+1});
}
}
for(int i=1;i<=n;i++){
cout<<a[i]<<" \n"[i==n];
}
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);cout.tie(nullptr);
int tmp=1;
for(int i=1;i<=500000;i++){
tmp=tmp*i%mod;
}
tmp=fp(tmp,mod-2);
for(int i=500000;i>=1;i--){
inv[i]=tmp;
tmp=tmp*i%mod;
}
int T=1;
cin>>T;
while(T--) abt();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 3ms
memory: 7756kb
input:
4 4 2 5 5 2 4 2 1 3 3 2 1 4 3 5 4 3 1 1 1 6 6 6 3 5 4 3 2 3 1 1 2 3 5 2 1 3 2 1 5 1 1 3 4 1 3 4 2 4
output:
500000007 5 5 6 5 10 9 166666673 5 6 500000006 4 3 4 5
result:
ok 15 numbers
Test #2:
score: -100
Wrong Answer
time: 119ms
memory: 7628kb
input:
50000 5 508432375 168140163 892620793 578579275 251380640 3 4 4 1 3 346232959 736203130 186940774 655629320 607743104 1 863886789 1 364158084 18 864679185 463975750 558804051 604216585 694033700 499417132 375390750 337590759 467353355 111206671 983760005 984444619 322277587 138763925 205122047 97736...
output:
854665334 904343293 986091180 234208588 859123744 863886789 871186919 814243920 968784984 206455474 341020407 449261413 196759729 901433117 993368588 907574792 716129253 984444619 489899014 435736558 113628626 865563379 502171683 314260576 902284038 240323331 132646723 421298438 601054667 99438820 9...
result:
wrong answer 3rd numbers differ - expected: '590444253', found: '986091180'