제출 #1060991

#제출 시각아이디문제언어결과실행 시간메모리
1060991Sir_Ahmed_Imran전선 연결 (IOI17_wiring)C++17
0 / 100
1 ms608 KiB
///~~~LOTA~~~/// #include <bits/stdc++.h> using namespace std; #define ll long long #define ld long double #define append push_back #define add insert #define nl '\n' #define ff first #define ss second #define pii pair<int,int> #define pll pair<ll,ll> #define all(x) (x).begin(),(x).end() #define L0TA ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL) #define terminator main #define MAXN 201 ll dp[MAXN][MAXN]; ll min_total_length(vector<int> r,vector<int> b){ int n,m; dp[0][0]=0; n=r.size(); m=b.size(); for(int i=1;i<MAXN;i++) dp[i][0]=dp[0][i]=1e18; for(int i=1;i<=n;i++) for(int j=1;j<=m;j++) dp[i][j]=min(dp[i][j-1],dp[i-1][j-1])+abs(r[i-1]-b[j-1]); return dp[n][m]; }
#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...