#include <bits/stdc++.h> using namespace std; #define endl '\n' int t[2009][2009], dp[2009][2009], smol; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, k; cin>>n>>k; for(int i=1; i<=n; ++i){ for(int j=1; j<=i; ++j){ cin>>t[i][j]; } } smol=t[1][1]; dp[1][1]=1; for(int i=2; i<=n; ++i){ dp[i][1]=dp[i-1][1]+1; if(dp[i][1]<=k){ smol=min(smol, t[i][1]); } dp[i][i]=dp[i-1][i-1]+1; if(dp[i][i]<=k){ smol=min(smol, t[i][i]); } } for(int i=3; i<=n; ++i){ for(int j=2; j<i; ++j){ dp[i][j]=dp[i-1][j-1]+dp[i-1][j]-dp[i-2][j-1]+1; if(dp[i][j]<=k){ smol=min(smol, t[i][j]); } } } cout<<smol<<endl; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | #include <bits/stdc++.h> using namespace std; #define endl '\n' int t[2009][2009], dp[2009][2009], smol; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, k; cin>>n>>k; for(int i=1; i<=n; ++i){ for(int j=1; j<=i; ++j){ cin>>t[i][j]; } } smol=t[1][1]; dp[1][1]=1; for(int i=2; i<=n; ++i){ dp[i][1]=dp[i-1][1]+1; if(dp[i][1]<=k){ smol=min(smol, t[i][1]); } dp[i][i]=dp[i-1][i-1]+1; if(dp[i][i]<=k){ smol=min(smol, t[i][i]); } } for(int i=3; i<=n; ++i){ for(int j=2; j<i; ++j){ dp[i][j]=dp[i-1][j-1]+dp[i-1][j]-dp[i-2][j-1]+1; if(dp[i][j]<=k){ smol=min(smol, t[i][j]); } } } cout<<smol<<endl; return 0; } |