This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> ii;
const int mod=1e9+7;
ii Seg[505];
int n,Count=0,res=0,a[505],b[505],f[505];
map<int,int> mm,tree;
void Sub1()
{
for(int i=1; i<=n; i++)
{
f[i]=1;
for(int j=1; j<i; j++)
if(a[j]<a[i])
f[i]=(f[i]+f[j])%mod;
res=(res+f[i])%mod;
}
cout<<res;
}
void Update(int idx,int data)
{
while(idx<=Count)
{
tree[idx]=(tree[idx]+data)%mod;
idx+=idx&-idx;
}
}
int Query(int idx)
{
int rs=0;
while(idx>0)
{
rs=(rs+tree[idx])%mod;
idx-=idx&-idx;
}
return rs;
}
void Sub2()
{
for(int i=1; i<=n; i++)
Seg[i]=ii(a[i],b[i]);
sort(Seg+1,Seg+n+1);
for(int i=1; i<=n; i++)
for(int j=max(Seg[i-1].second,Seg[i].first); j<=Seg[i].second; j++)
mm[j]=++Count;
for(int i=1; i<=n; i++)
for(int j=b[i]; j>=a[i]; j--)
{
int jj=mm[j];
int tmp=Query(jj-1)+1;
Update(jj,tmp);
res=(res+tmp)%mod;
}
cout<<res;
}
int main()
{
ios_base::sync_with_stdio(false);
//freopen("BOAT.INP","r",stdin);
cin>>n;
int maxn=0;
bool check=false;
for(int i=1; i<=n; i++)
{
cin>>a[i]>>b[i];
if(a[i]!=b[i])
check=true;
maxn=max(maxn,b[i]-a[i]);
}
if(check==false)
Sub1();
else if(maxn<=1e6)
Sub2();
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |