제출 #746915

#제출 시각아이디문제언어결과실행 시간메모리
746915vjudge1Calvinball championship (CEOI15_teams)C++14
0 / 100
39 ms65536 KiB
#include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> #define int long long #define endl '\n' using namespace std; using namespace __gnu_pbds; using ordered_set = tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update>; int SLV[10011][10011]; int slv(int a,int b){ if(b==0)return 1; if(SLV[a][b]!=-1)return SLV[a][b]; return SLV[a][b]=(slv(a+1,b-1)+slv(a,b-1)*a)%1000000007; } signed main(){ ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); int t=1; // t=INT_MAX; while(t--){ memset(SLV,-1,sizeof SLV); int n=5; cin>>n; int arr[n]; for(auto &i:arr)cin>>i; int ans=1; int mx=0; for(int i=0;i<n;i++){ for(int w=1;w<arr[i];w++)ans+=slv(max(mx,w),n-i-1); mx=max(mx,arr[i]); ans%=1000000007; } cerr<<ans<<endl; } } /* 1 1 1 1 1 1 1 2 1 1 2 1 1 1 2 2 1 1 2 3 1 2 1 1 1 2 1 2 1 2 1 3 1 2 2 1 1 2 2 2 1 2 2 3 1 2 3 1 1 2 3 2 1 2 3 3 1 2 3 4 */
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...