Submission #1036394

# Submission time Handle Problem Language Result Execution time Memory
1036394 2024-07-27T10:28:30 Z DeathIsAwe Wiring (IOI17_wiring) C++14
0 / 100
0 ms 348 KB
#include "wiring.h"
#include <bits/stdc++.h>
using namespace std;

long long min_total_length(vector<int> r, vector<int> b) {
	int ans = 0, temp;
	if (b.size() > r.size()) {
		for (int i=0;i<b.size();i++) {
			temp = min(i, (int)r.size() - 1);
			ans += b[i] - r[temp];
		}
	} else {
		for (int i=0;i<r.size();i++) {
			temp = min(i, (int)b.size() - 1);
			ans += r[i] - b[temp];
		}
	}
	return ans;
}

Compilation message

wiring.cpp: In function 'long long int min_total_length(std::vector<int>, std::vector<int>)':
wiring.cpp:8:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    8 |   for (int i=0;i<b.size();i++) {
      |                ~^~~~~~~~~
wiring.cpp:13:17: 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();i++) {
      |                ~^~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB 3rd lines differ - on the 1st token, expected: '25859', found: '4369'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '904', found: '-1109'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '316', found: '-316'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '27', found: '-12'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB 3rd lines differ - on the 1st token, expected: '25859', found: '4369'
2 Halted 0 ms 0 KB -