Submission #1107166

#TimeUsernameProblemLanguageResultExecution timeMemory
1107166ASN49KBoat (APIO16_boat)C++14
0 / 100
2072 ms2524 KiB
#include <bits/stdc++.h> using namespace std; using i64=long long; #define int i64 #define UNUSED -1 #define all(x) x.begin(),x.end() #define pb push_back const int mod=1e9+7,inf=1e9+1; const i64 INF=1e18; mt19937 rng(69); int prod(int x,int y) { return (1LL*x*y)%mod; } int add(int x,int y) { assert(y>=0 && y<mod && x<mod); return (x+y)%mod; } int pw2(int a,int p) { int rez=1; while(p>0) { if(p&1) { rez=prod(rez,a); } p>>=1; a=prod(a,a); } return rez; } const int NN=600; const int N=1000000; int dp[2*NN+1][NN+1],sum[2*NN+1]; int fact[N+1],inv[N+1]; void pre_proc() { } int comb(int k,int n) { if(k>n) { return 0; } int rez=1; for(int i=0;i<k;i++) { rez=prod(rez , n-i); } return rez; //return prod(prod(fact[n] , inv[n-k]),inv[k]); } main() { //pre_proc(); int n; cin>>n; //segmente de forma [x,y) vector<pair<int,int>>a(n); vector<int>poz(1,0); poz.reserve(2*n+1); for(auto &c:a) { cin>>c.first>>c.second; c.second++; poz.pb(c.first); poz.pb(c.second); } sort(all(poz)); poz.erase(unique(all(poz)) , poz.end()); for(int i=0;i<poz.size()-1;i++) { sum[i]=1; } dp[0][1]=1; for(auto &c:a) { c.first=lower_bound(all(poz) , c.first)-poz.begin(); c.second=lower_bound(all(poz) , c.second)-poz.begin()-1; for(int i=c.first;i<=c.second;i++) { for(int j=n;j>=2;j--) { dp[i][j]=add(dp[i][j] , dp[i][j-1]); } dp[i][1]=add(dp[i][1] , sum[i-1]); } for(int i=1;i<poz.size()-1;i++) { sum[i]=sum[i-1]; for(int j=1;j<=n;j++) { //if(c.first==2)cout<< prod(dp[i][j] , comb(j,poz[i+1]-poz[i]))<<' '; sum[i]=add(sum[i] , prod(dp[i][j] , comb(j,poz[i+1]-poz[i]))); } //cout<<'\n'; //cout<<sum[i]<<' '; } //cout<<'\n'; } cout<<sum[poz.size()-2]-1; }

Compilation message (stderr)

boat.cpp:56:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   56 | main()
      | ^~~~
boat.cpp: In function 'int main()':
boat.cpp:75:18: warning: comparison of integer expressions of different signedness: 'i64' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   75 |     for(int i=0;i<poz.size()-1;i++)
      |                 ~^~~~~~~~~~~~~
boat.cpp:93:22: warning: comparison of integer expressions of different signedness: 'i64' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   93 |         for(int i=1;i<poz.size()-1;i++)
      |                     ~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...