Gym 100231B Intervals
5789 단어 acm 합숙 훈련codeforces
//
// Created by on 16/3/6.
///
// Created by on 16/3/6.
//
#include
#include
#include
#include
#include
using namespace std;
const int max_n = 50000+100;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
struct seg{
int a,b,c;
bool operatorconst seg& s) const {
return bint segTree[max_n*4+10];
void pushup(int rt){
segTree[rt] = segTree[rt<<1]+segTree[rt<<1|1];
}
void update(int p,int l,int r,int rt){
if(l==r){
segTree[rt] = 1;
return;
}
int m = (l+r)>>1;
if(p<=m){
update(p,lson);
} else{
update(p,rson);
}
pushup(rt);
}
int query(int L,int R,int l,int r,int rt){
if(L<=l&&r<=R){
return segTree[rt];
}
int m = (l+r)>>1;
int ret = 0;
if(L<=m){
ret+=query(L,R,lson);
}
if(R>m){
ret+=query(L,R,rson);
}
return ret;
}
vector<int> p;
bool isexist[max_n];
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL);
int n;
p.clear();
while (cin>>n){
memset(isexist,0, sizeof(isexist));
memset(segTree,0, sizeof(segTree));
int ans = 0;
for(int i = 0;icin>>s[i].a>>s[i].b>>s[i].c;
}
sort(s,s+n);
for(int i = 0;iint num = 0;
num = query(s[i].a,s[i].b,1,50000,1);
if(num>=s[i].c){
continue;
} else{
int cnt = s[i].c-num;
int it = 0;
int pos = 0;
while (itif(!isexist[s[i].b-pos]){
update(s[i].b-pos,1,50000,1);
isexist[s[i].b-pos] = true;
it++;
ans++;
}
pos++;
}
}
}
cout<return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Gym 100231B Intervals텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.