QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#747046#9529. Farm ManagementSSHLWA 16ms11132kbC++203.1kb2024-11-14 16:14:452024-11-14 16:14:45

Judging History

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

  • [2024-11-14 16:14:45]
  • 评测
  • 测评结果:WA
  • 用时:16ms
  • 内存:11132kb
  • [2024-11-14 16:14:45]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
void solve()
{
    ll n, m;
    cin >> n >> m;
    vector<pair<ll, pair<ll, ll>>> a(n+1);
    ll t[n+1]={0},cnt=0;
    ll sum = 0, num = 0;
    for (int i = 1; i <= n; i++)
    {
        cin >> a[i].first >> a[i].second.first >> a[i].second.second;
        cnt += a[i].second.second;
        sum += a[i].second.first * a[i].first;
        num += a[i].second.first;
    }
    sort(a.begin()+1, a.end());
    for(int i=1;i<=n;i++)
    {
        if(cnt-m>=a[i].second.second-a[i].second.first)
        {
            t[i]=a[i].second.first;
            cnt-=a[i].second.second-a[i].second.first;
        }else{
            t[i]=a[i].second.second-cnt+m;
            cnt=m;
        }
    }
    ll p[n+2]={0},q[n+2]={0},b[n+2]={0},c[n+2]={0};
    for(int i=n;i>=1;i--)
    {
                b[n-i+1]=b[n-i]+a[i].second.second-a[i].second.first;
        c[n-i+1]=c[n-i]+(a[i].second.second-a[i].second.first)*a[i].first;
        p[n-i+1]=p[n-i]+t[n-i+1]-a[n-i+1].second.first;
        q[n-i+1]=q[n-i]+(t[n-i+1]-a[n-i+1].second.first)*a[n-i+1].first;
    }
    ll d[n+2]={0},e[n+2]={0};
    for(int i=1;i<=n;i++)
    {
        d[i]=d[i-1]+a[i].second.second-t[i];
        e[i]=e[i-1]+(a[i].second.second-t[i])*a[i].first;
    }
    // for(int i=1;i<=n;i++)
    // {
    //     cout<<a[i].first<<' '<<a[i].second.first<<' '<<a[i].second.second<<' '<<t[i]<<' '<<b[i]<<' '<<c[i]<<' '<<d[i]<<' '<<e[i]<<'\n';
    // }
    ll a3=0;
    for(int i=1;i<=n;i++)
    {
        a3=max(a3,p[i]*a[i].first-q[i]);
    }
    ll ma=0,pos=0;
for (int i = 1; i <= n; i++)
    {
        int l=1,r=n;
        while(l+1<r)
        {
            int mid=(l+r)/2;
            if(b[mid]<a[i].second.first+m-num)
            {
                r=mid;
            }
            else {
                l=mid;
            }
        }
        // cout<<a[i].second.first+m-num<<' '<<l<<endl;
        if(n-l<i-1)
        break;
        if(ma<(sum+c[l]+(a[i].second.first+m-num-b[l])*a[n-l].first))
        {
            ma=(sum+c[l]+(a[i].second.first+m-num-b[l])*a[n-l].first);
            pos=i;
        }
    }
    // cout<<pos<<endl;
    ll a1 = sum + (m - num) * a.back().first;
    ll a2 = sum - a[pos].first * a[pos].second.first;
    m -= num - a[pos].second.first;
    for (int i = n; i >= 1; i--)
    {
        // cout<<i<<' '<<m<<endl;
        if (i == pos)
            {
                a2+=m*a[i].first;
                break;
            }
        if (m < a[i].second.second - a[i].second.first)
        {
            a2 += m * a[i].first;
            m = 0;
            break;
        }
        else
        {
            a2 += (a[i].second.second - a[i].second.first) * a[i].first;
            m -= a[i].second.second - a[i].second.first;
        }
    }
    for(int i=1;i<=n;i++)
    a3+=t[i]*a[i].first;
    // cout<<a1<<' '<<a2<<' '<<a3<<'\n';
    cout << max({a1, a2,a3});
}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int t = 1;
    // cin>>t;
    while (t--)
        solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3808kb

input:

5 17
2 3 4
6 1 5
8 2 4
4 3 3
7 5 5

output:

109

result:

ok single line: '109'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3524kb

input:

12 62
503792 9 10
607358 1 3
600501 10 10
33249 4 4
774438 6 6
197692 3 6
495807 8 8
790225 5 9
77272 3 8
494819 4 9
894779 3 9
306279 5 6

output:

35204500

result:

ok single line: '35204500'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3592kb

input:

15 32
835418 2 3
178262 1 3
527643 2 2
519710 1 1
774544 3 3
82312 1 1
808199 1 1
809396 1 3
255882 1 3
80467 1 3
874973 1 3
813965 1 2
198275 1 2
152356 1 3
802055 1 1

output:

22000255

result:

ok single line: '22000255'

Test #4:

score: 0
Accepted
time: 0ms
memory: 3784kb

input:

13 20
526447 1 1
807398 2 2
4167 1 2
944031 2 2
830685 2 2
394251 1 2
505011 1 2
968848 1 1
58170 1 3
32504 1 1
792273 3 3
196120 1 2
714507 1 1

output:

12878768

result:

ok single line: '12878768'

Test #5:

score: 0
Accepted
time: 0ms
memory: 3824kb

input:

13 32
582584 1 3
335440 3 3
971984 1 2
864169 1 2
528515 1 1
382399 1 2
459855 1 2
406909 2 3
66780 2 3
885118 3 3
434844 1 2
93331 1 3
502509 1 3

output:

22065034

result:

ok single line: '22065034'

Test #6:

score: 0
Accepted
time: 0ms
memory: 3612kb

input:

12 77
30244 1 7
518214 3 8
486001 8 9
152634 2 3
180255 3 4
791887 1 6
635820 2 9
881171 3 5
337905 3 8
683182 5 5
300786 3 6
339094 7 9

output:

50453764

result:

ok single line: '50453764'

Test #7:

score: 0
Accepted
time: 0ms
memory: 3744kb

input:

10 3923726
826284 215861 638800
471693 146746 886003
140800 532315 684546
673434 604071 814259
170671 299465 525449
104262 689547 855391
215333 591975 803421
795321 31606 984783
103838 361911 601318
145693 450227 686945

output:

1597735409747

result:

ok single line: '1597735409747'

Test #8:

score: -100
Wrong Answer
time: 16ms
memory: 11132kb

input:

100000 16648414311
252800 55607 195981
157144 548469 789695
643048 2 2
907957 3 3
32532 231618 316365
194428 227513 762023
4231 393553 699179
898052 3 5
507551 3 5
747498 1 4
857939 9 9
440056 764429 796585
495571 117772 838593
4059 551203 870687
60877 597981 770178
593237 4 10
438147 218335 370780
...

output:

4148147118553199

result:

wrong answer 1st lines differ - expected: '4148641232436282', found: '4148147118553199'