이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//#pragma optimization_level 3
//#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math,O3")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#include<bits/stdc++.h>
/*
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/detail/standard_policies.hpp>
using namespace __gnu_pbds;
typedef tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update>ordset;
*/
#define fr first
#define sc second
#define vec vector
#define pb push_back
#define pii pair<int, int>
#define forn(x,y) for(int x = 1 ; x <= (int)y ; ++x)
#define all(x) (x).begin(),(x).end()
#define fast cin.tie(0);cout.tie(0);cin.sync_with_stdio(0);cout.sync_with_stdio(0);
using namespace std;
typedef long long ll;
typedef unsigned int uint;
typedef pair<ll,ll> pll;
typedef complex<int> point;
const int nmax = 2005;
const ll linf = 1e18;
const ll mod = 998244353;
const int inf = 1e9+10;
const int sq = 5000;
int n , m;
ll dp[nmax][nmax];
ll a[nmax], b[nmax];
ll min_total_length( vec < int > r , vec < int > bl){
for(int i = 0 ; i < r.size();i++){
a[i+1] = r[i];
}
for(int i = 0 ; i < bl.size();i++){
b[i+1] = bl[i];
}
n = r.size();
m = bl.size();
a[0] = - inf;
a[n+1] = linf;
b[0] = -inf;
b[m+1] = linf;
for(int i = 0; i <= n; i++){
for(int j = 0; j <= m; j++){
dp[i][j] = linf;
if( i == 0 && j == 0){
dp[i][j] = 0;
}
if(i > 0 && j > 0){
dp[i][j] = min(dp[i][j] , dp[i-1][j-1] + abs(a[i] - b[j]));
}
if(i > 0){
dp[i][j] = min(dp[i][j] , dp[i-1][j] + abs(a[i] - b[j+1]));
}
if(j > 0){
dp[i][j] = min(dp[i][j] , dp[i][j-1] + abs(a[i+1] - b[j]));
}
}
}
return dp[n][m];
}
컴파일 시 표준 에러 (stderr) 메시지
wiring.cpp: In function 'll min_total_length(std::vector<int>, std::vector<int>)':
wiring.cpp:39:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
39 | for(int i = 0 ; i < r.size();i++){
| ~~^~~~~~~~~~
wiring.cpp:42:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | for(int i = 0 ; i < bl.size();i++){
| ~~^~~~~~~~~~~
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |