Submission #2387104


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

int main() {

	int n;
	vector<int> trip;
	scanf("%d", &n);

	for(int i = 0; i < n; i++) {
		int a;
		scanf("%d", &a);
		trip.push_back(a);
	}

	for(int i = 0; i < n; i++) {
		vector<int> copy = trip;
		copy.erase(copy.begin() + i);
		//sort(copy.begin(), copy.end());
		int now = 0;
		long long total = 0;
		for(int j = 0; j < n - 1; j++) {
			if(copy[j] != now) {
				total += abs(now - copy[j]);
				now = copy[j];
			}
		}

		total += abs(now - 0);

		printf("%lld\n", total);
	}

	return 0;
}

Submission Info

Submission Time
Task C - Traveling Plan
User calvintan
Language C++14 (GCC 5.4.1)
Score 0
Code Size 579 Byte
Status TLE
Exec Time 2103 ms
Memory 1144 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:9:17: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
                 ^
./Main.cpp:13:18: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &a);
                  ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 3
AC × 4
TLE × 11
Set Name Test Cases
Sample sample-01.txt, sample-02.txt, sample-03.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, sample-01.txt, sample-02.txt, sample-03.txt
Case Name Status Exec Time Memory
01.txt TLE 2103 ms 1144 KB
02.txt TLE 2103 ms 1144 KB
03.txt AC 1 ms 256 KB
04.txt TLE 2103 ms 1144 KB
05.txt TLE 2103 ms 1144 KB
06.txt TLE 2103 ms 1144 KB
07.txt TLE 2103 ms 1144 KB
08.txt TLE 2103 ms 1144 KB
09.txt TLE 2103 ms 1144 KB
10.txt TLE 2103 ms 1144 KB
11.txt TLE 2103 ms 1144 KB
12.txt TLE 2103 ms 1144 KB
sample-01.txt AC 1 ms 256 KB
sample-02.txt AC 1 ms 256 KB
sample-03.txt AC 1 ms 256 KB