QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#786232#9730. Elevator IIGodwangAC ✓108ms12692kbC++235.9kb2024-11-26 20:49:302024-11-26 20:49:35

Judging History

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

  • [2024-11-26 20:49:35]
  • 评测
  • 测评结果:AC
  • 用时:108ms
  • 内存:12692kb
  • [2024-11-26 20:49:30]
  • 提交

answer

#include <iostream>
using namespace std;
#include <set>
#include <algorithm>
#include <cmath>
#include <map>
#include <cstdio>
#include <string>
#include <cstring>
#include <string.h>
#include <stdlib.h>
#include <iomanip>
#include <fstream>
#include <stdio.h>
#include <stack>
#include <queue>
#include <ctype.h>
#include <vector>
#include <random>
#include<list> 
#define ll long long
#define ull unsigned long long
#define pb push_back
#define rep(i, a, n) for (int i = a; i <= n; i++)
#define per(i, a, n) for (int i = n; i >= a; i--)
#define pii pair<int, int>
#define pli pair<ll, int>
#define pil pair<int, ll>
#define pll pair<ll, ll>
#define lowbit(x) ((x)&(-x))
ll extend_gcd(ll a, ll b, ll &x, ll &y)
{
    if (b == 0)
    {
        x = 1;
        y = 0;
        return a;
    }
    ll d = extend_gcd(b, a % b, y, x);
    y -= a / b * x;
    return d;
}
ll fastpow(ll a, ll n, ll mod)
{
    ll ans = 1;
    a %= mod;
    while (n)
    {
        if (n & 1)
            ans = (ans * a) % mod; //% mod
        a = (a * a) % mod;         //% mod
        n >>= 1;
    }
    return ans;
}

inline void write(__int128 x)
{
    if (x > 9)
    {
        write(x / 10);
    }
    putchar(x % 10 + '0');
}
__int128 sqrt(__int128 m)
{
    __int128 leftt = 0, rightt = ((__int128)1) << 51, ret = -1, mid;
    while (leftt < rightt)
    {
        mid = (leftt + rightt) / 2;
        if (mid * mid > m)
        {
            rightt = mid;
        }    
        else
        {
            leftt = mid + 1;
            ret = mid;
        }
    }
    return ret;
}

const double eps = 1e-6;
int sgn(double x)
{
    if(fabs(x)<eps)
    {
        return 0;
    }
    else return x<0?-1:1;
}

struct Point
{
    double x,y;
    Point()
    {

    }
    Point(double x,double y):x(x),y(y)
    {

    }
    Point operator + (Point B)
    {
        return Point(x+B.x,y+B.y);
    }
    Point operator - (Point B)
    {
        return Point(x-B.x,y-B.y);
    }
    bool operator == (Point B)
    {
        return sgn(x-B.x)==0&&sgn(y-B.y)==0;
    }
    bool operator < (Point B)
    {
        return sgn(x-B.x)<0||(sgn(x-B.x)==0&&sgn(y-B.y)<0);
    }
};
typedef Point Vector;
double Cross(Vector A,Vector B)//叉积
{
    return A.x*B.y-A.y*B.x;
}
double Distance(Point A,Point B)
{
    return hypot(A.x-B.x,A.y-B.y);
}
int Convex_hull(Point *p,int n,Point *ch)
{
    n=unique(p,p+n)-p;
    sort(p,p+n);
    int v=0;

    for(int i=0;i<n;i++)
    {
        while (v>1&&sgn(Cross(ch[v-1]-ch[v-2],p[i]-ch[v-1]))<=0)
        {
            v--;
        }
        ch[v++]=p[i];
    }

    int j=v;

    for(int i=n-2;i>=0;i--)
    {
        while (v>j&&sgn(Cross(ch[v-1]-ch[v-2],p[i]-ch[v-1]))<=0)
        {
            v--;
        }
        ch[v++]=p[i];
    }
    if(n>1)
    {
        v--;
    }
    return v;
}

int kmp(string s, string p)
{
    int ans = 0, lastt = -1;
    int lenp = p.size();
    vector<int > Next(lenp+3,0);
    rep(i, 1, lenp - 1)
    {
        int j = Next[i];
        while (j && p[j] != p[i])
        {
            j = Next[j];
        }
        if (p[j] == p[i])
        {
            Next[i + 1] = j + 1;
        }
        else
        {
            Next[i + 1] = 0;
        }
    }
    int lens = s.size();
    int j = 0;
    rep(i, 0, lens - 1)
    {
        while (j && s[i] != p[j])
        {
            j = Next[j];
        }
        if (s[i] == p[j])
        {
            j++;
        }
        if (j == lenp)
        {
            ans++;
        }
    }
    return ans;
}

int dir[4][2] =
    {
        {-1, 0}, {0, 1}, {1, 0}, {0, -1}}; // 左右上下
// int dir[8][2]={
//         {-1, 0}, {0, 1}, {1, 0}, {0, -1},{-1,-1},{-1,1},{1,-1},{1,1}
// };

#define endl '\n'//交互题请删除本行
const ll inf = 1000000000000000000ll;
const ll mod1 = 998244353ll, P1 = 131, mod2 = 1e9 + 7ll, P2 = 13331;
ll inverse(ll x)
{
    return fastpow(x,mod1-2,mod1);
}

const int N = 2e5 + 10, M = 1e6 + 10;

///////////////////////////////////

int tt;

int n;

ll now;

struct node
{
    int id;
    ll L,R;
    bool operator < (const node &b) const
    {
        return R<b.R;
    }
}st[N];

///////////////////////////////////

bool cmp(node x,node y)
{
    return x.L<y.L;
}

///////////////////////////////////

void init()
{

}

///////////////////////////////////

int main()
{
    ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);//交互题请删除本行
    //freopen("ain.txt", "r", stdin); freopen("aout.txt", "w", stdout);
    
    cin>>tt;
    while (tt--)
    {
        ll ans=0;
        vector<int > anss;

        cin>>n>>now;
        rep(i,1,n)
        {
            st[i].id=i;
            cin>>st[i].L>>st[i].R;
            ans+=st[i].R-st[i].L;
        }
        sort(st+1,st+n+1,cmp);

        int cnt=0;
        priority_queue<node > q;
        while (1)
        {
            while (cnt+1<=n&&st[cnt+1].L<=now)
            {
                cnt++;
                q.push(st[cnt]);
            }

            //up
            if(q.size()&&q.top().R>=now)
            {
                node u=q.top();
                q.pop();
                anss.pb(u.id);
                now=u.R;
            }
            else
            {
                if(cnt==n)
                {
                    break;
                }
                cnt++;
                anss.pb(st[cnt].id);
                ans+=st[cnt].L-now;
                now=st[cnt].R;
            }
            
        }
        
        while (q.size())
        {
            node u=q.top();
            q.pop();
            anss.pb(u.id);
        }
        cout<<ans<<endl;
        for(auto i:anss)
        {
            cout<<i<<" ";
        }
        cout<<endl;
        

    }
    
    


    return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

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

output:

11
3 1 4 2 
5
2 1 

result:

ok ok 2 cases (2 test cases)

Test #2:

score: 0
Accepted
time: 49ms
memory: 3916kb

input:

6100
19 52
51 98
2 83
40 58
96 99
39 55
72 94
15 17
4 15
48 99
2 99
77 78
35 77
44 62
79 81
30 31
1 48
48 76
68 99
60 66
6 19
44 53
64 92
17 28
67 98
9 99
40 65
16 27
99 100
15 56
4 6
24 97
84 96
47 49
37 38
77 79
13 40
13 92
71 100
47 93
90 91
72 81
15 48
32 71
19 17
95 99
10 23
18 100
90 93
52 92
...

output:

524
10 9 18 4 1 6 2 14 11 12 17 19 13 3 5 16 15 7 8 
194
5 4 2 6 1 3 
397
4 11 1 5 12 10 13 14 8 16 2 6 15 9 7 3 
733
7 3 10 1 6 8 4 17 5 16 13 11 15 12 18 14 9 19 2 
244
3 2 8 6 12 5 4 14 10 11 9 1 15 13 7 
422
18 1 6 11 2 10 7 13 9 4 12 20 14 5 15 19 8 16 3 17 
104
4 1 3 2 
187
4 8 3 1 2 6 7 5 9 1...

result:

ok ok 6100 cases (6100 test cases)

Test #3:

score: 0
Accepted
time: 108ms
memory: 11328kb

input:

3
100000 9859
150464 951410
637107 897197
236268 936879
353406 403927
511229 999416
861211 958428
186246 446149
162388 805753
449016 817386
147119 604340
579101 926848
958992 987299
859662 907007
507058 690951
719158 856587
789149 927957
691705 707085
694110 845505
192759 616586
905489 935507
937041...

output:

24903933702
92856 65801 39096 51617 33773 65474 94722 13509 21862 12929 17341 15727 87576 11792 27729 2606 48077 55052 50887 33512 72396 16861 98442 69859 42944 15997 56377 66434 59405 7904 41121 40847 9663 68634 19087 34470 50759 37212 24530 10095 6562 23408 70457 96796 55563 25733 74144 93686 2850...

result:

ok ok 3 cases (3 test cases)

Test #4:

score: 0
Accepted
time: 87ms
memory: 11668kb

input:

3
100000 932101
80818 80823
538842 538844
406812 406818
625053 625054
511066 511073
667363 667365
527022 527023
621329 621331
855832 855852
796168 796169
268927 268929
650891 650895
312793 312794
873256 873260
424896 424929
266271 266272
902201 902209
842863 842864
361599 361610
647851 647855
148132...

output:

986597
82641 30352 69618 20783 58790 61591 73429 47387 19378 23379 41138 11990 19101 41160 74602 34312 10872 13641 70364 15412 20274 12832 42804 83583 94175 77157 82305 60601 21546 21059 98950 61273 47916 9311 25865 53332 48329 29951 79449 26301 33491 96045 59186 37084 58554 99074 38280 78061 69175 ...

result:

ok ok 3 cases (3 test cases)

Test #5:

score: 0
Accepted
time: 88ms
memory: 12692kb

input:

3
100000 375117879
637628712 637644704
788784579 788792294
804734775 804734822
332639566 332642798
143113598 143114045
132119073 132122341
684483097 684513821
484676670 484678332
661667340 661668818
777865379 777870254
142495696 142495995
101735856 101740588
906481102 906481965
360087766 360091064
1...

output:

872643717
43549 34676 31878 49124 12077 8140 13605 76831 10834 96613 83688 46028 65944 14511 56152 84791 1759 60404 73244 38124 93732 74294 8688 64153 56500 39213 27938 93350 21680 36926 8295 8832 69685 1025 22233 14796 83881 83105 72820 95432 90168 29163 20496 4937 51441 96515 46657 82775 90528 380...

result:

ok ok 3 cases (3 test cases)

Extra Test:

score: 0
Extra Test Passed