답안 #914489

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
914489 2024-01-22T09:08:53 Z tosivanmak 전선 연결 (IOI17_wiring) C++17
0 / 100
1 ms 356 KB
#include<bits/stdc++.h>
using namespace std;
#define ll long long

long long min_total_length(vector<int> r, vector<int> b) {
    r.insert(r.begin(), 0);
    b.insert(b.begin(),0);
    if(r.size()<b.size()){
        swap(r,b);
    }
    ll dp[r.size()+5][b.size()+5];
    ll n=r.size(),m=b.size();
    for(int i=0;i<r.size()+5;i++){
        for(int j=0;j<b.size()+5;j++){
            dp[i][j]=1e17;
        }
    }
    dp[0][0]=0;
    for(int i=1;i<=n;i++){
        for(int j=1;j<=m;j++){
            dp[i][j]=min(dp[i-1][j-1],dp[i][j-1])+abs(r[i]-b[j]);
        }
    }
    return dp[n][m];
}

Compilation message

wiring.cpp: In function 'long long int min_total_length(std::vector<int>, std::vector<int>)':
wiring.cpp:13:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   13 |     for(int i=0;i<r.size()+5;i++){
      |                 ~^~~~~~~~~~~
wiring.cpp:14:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   14 |         for(int j=0;j<b.size()+5;j++){
      |                     ~^~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB 3rd lines differ - on the 1st token, expected: '25859', found: '100000000000021828'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '904', found: '100000000000000326'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '17703', found: '19052'
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 356 KB 3rd lines differ - on the 1st token, expected: '27', found: '30'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB 3rd lines differ - on the 1st token, expected: '25859', found: '100000000000021828'
2 Halted 0 ms 0 KB -