답안 #864517

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
864517 2023-10-23T07:01:50 Z suiyeet Roller Coaster Railroad (IOI16_railroad) C++14
0 / 100
550 ms 51456 KB
#include "railroad.h"
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
void debug_out() {cerr<<endl;}
template <typename Head, typename... Tail>
void debug_out(Head _H, Tail... _T) {cerr<<" "<<to_string(_H);debug_out(_T...);}
#define debug(...) cerr<<"["<<#__VA_ARGS__<<"]:",debug_out(__VA_ARGS__)
#else
#define debug(...)
#endif
const int MAXN = 600005;
const int inf=1000000500ll;
const long long oo =1000000000000000500ll;
const int MOD = (int)1e9 + 7;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
typedef pair<int,int> pi; 
struct fenw {
    int fw[MAXN];
    void update(int x, int nval){
        for(;x<MAXN;x+=x&-x)fw[x]+=nval;
    }
    void update(int x, int y, int nval){
        update(x,nval);
        update(y+1,-nval);
    }

    int point(int x){
        int r=0;
        for(;x;x-=x&-x)r+=fw[x];
        return r;
    }
}fw;
namespace ufds{
    int p[MAXN];
    int sz[MAXN];
    int find(int x){
        if(p[x]==x)return x;
        else return p[x]=find(p[x]);
    }
    void merge(int x, int y){
        x=find(x);y=find(y);
        if(x==y)return;
        if(sz[x]<sz[y])swap(sz[x],sz[y]);
        sz[x]+=sz[y];
        p[y]=x;
    }
};
long long plan_roller_coaster(std::vector<int> s, std::vector<int> t) {
    iota(ufds::p,ufds::p+MAXN,0);
    fill(ufds::sz,ufds::sz+MAXN,1);
    s.push_back(1e9);
    t.push_back(1);
    vector<int>points;
    map<int,int> mp;
    int n=s.size();
    for(int i=0;i<n;i++){
        points.push_back(s[i]);
        points.push_back(s[i]-1);
        points.push_back(t[i]);
        points.push_back(t[i]-1);
    }
    sort(points.begin(),points.end());
    points.resize(unique(points.begin(),points.end())-points.begin());
    for(int i=0;i<(int)points.size();i++){
        mp[points[i]]=i+1;
    }
    for(int i=0;i<n;i++){
        fw.update(mp[s[i]],mp[t[i]-1],1);

    }
    int m=points.size();
    for(int i=1;i<=m;i++){
        int r=fw.point(i);
        if(r>0)return 1;
        else {
            ufds::merge(i,i+1);
        }
    }
    for(int i=1;i<=m;i++){
        if(ufds::find(i) != ufds::find(1)){
            return 1;
        }
    }

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 6748 KB n = 2
2 Correct 1 ms 6748 KB n = 2
3 Correct 1 ms 6748 KB n = 2
4 Correct 1 ms 6744 KB n = 2
5 Correct 1 ms 6748 KB n = 2
6 Incorrect 2 ms 6748 KB answer is not correct: 1 instead of 523688153
7 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 6748 KB n = 2
2 Correct 1 ms 6748 KB n = 2
3 Correct 1 ms 6748 KB n = 2
4 Correct 1 ms 6744 KB n = 2
5 Correct 1 ms 6748 KB n = 2
6 Incorrect 2 ms 6748 KB answer is not correct: 1 instead of 523688153
7 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 550 ms 51456 KB answer is not correct: 1 instead of 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 6748 KB n = 2
2 Correct 1 ms 6748 KB n = 2
3 Correct 1 ms 6748 KB n = 2
4 Correct 1 ms 6744 KB n = 2
5 Correct 1 ms 6748 KB n = 2
6 Incorrect 2 ms 6748 KB answer is not correct: 1 instead of 523688153
7 Halted 0 ms 0 KB -