Code
After submitting this solution, there is a single test case out of 28 which is giving WA. And I don't see what's wrong with this solution. I don't think the problem is with constraints either.
# | User | Rating |
---|---|---|
1 | tourist | 3856 |
2 | jiangly | 3747 |
3 | orzdevinwang | 3706 |
4 | jqdai0815 | 3682 |
5 | ksun48 | 3591 |
6 | gamegame | 3477 |
7 | Benq | 3468 |
8 | Radewoosh | 3462 |
9 | ecnerwala | 3451 |
10 | heuristica | 3431 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | -is-this-fft- | 162 |
3 | Dominater069 | 160 |
4 | Um_nik | 158 |
5 | atcoder_official | 157 |
6 | Qingyu | 156 |
7 | adamant | 151 |
7 | djm03178 | 151 |
7 | luogu_official | 151 |
10 | awoo | 146 |
What's wrong with the logic?
ll n, c;
cin>>n>>c;
vector<pair<ll, ll> > v;
for(int i=0; i<n; ++i)
{
ll a,b,p;
cin>>a>>b>>p;
v.push_back({a, p});
v.push_back({b+1, -p});
}
sort(v.begin(), v.end());
ll ans = 0;
ll accum = 0;
for(int i=0; i<2*n; ++i)
{
ll a = v[i].first, p = v[i].second;
accum += p;
if(i+1<2*n)
{
ans += min(accum*(v[i+1].first-a), c*(v[i+1].first-a));
}
}
cout<<ans<<endl;
After submitting this solution, there is a single test case out of 28 which is giving WA. And I don't see what's wrong with this solution. I don't think the problem is with constraints either.
Name |
---|