Submission #1082191


Source Code Expand

#include <stdio.h>
#include <algorithm>

using namespace std;

const int maxn = 120000;
int n;
int a[maxn] , f[maxn];
int first , last , tot;
void work () {
	int i;
	scanf ( "%d" , &n );
	for ( i = 1 ; i <= n ; i++ ) {
		scanf ( "%d" , &a[i] );
		f[a[i]]++;
	}
	tot = 0;
	first = 9999999;
	for ( i = 1 ; i <= 100000 ; i++ ) if ( f[i] >= 2 ) {
		tot += f[i] - 1;
		first = min ( first , i );
		last = i;
	}
	if ( tot == 0 ) {
		printf ( "%d\n" , n );
		return ;
	}
	if ( tot == 1 ) {
		printf ( "%d\n" , n - 2 );
		return ;
	}
	if ( tot % 2 == 0 ) {
		printf ( "%d\n" , n - tot );
	}
	else {
		printf ( "%d\n" , n - tot - 1 );
	}
}
int main () {
	work ();
	return 0;
}

Submission Info

Submission Time
Task D - Card Eater
User hld67890
Language C++14 (GCC 5.4.1)
Score 400
Code Size 708 Byte
Status AC
Exec Time 12 ms
Memory 896 KB

Compile Error

./Main.cpp: In function ‘void work()’:
./Main.cpp:12:21: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf ( "%d" , &n );
                     ^
./Main.cpp:14:25: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf ( "%d" , &a[i] );
                         ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 2
AC × 17
Set Name Test Cases
Sample 00_example_01.txt, 00_example_02.txt
All 00_example_01.txt, 00_example_02.txt, 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt
Case Name Status Exec Time Memory
00_example_01.txt AC 2 ms 128 KB
00_example_02.txt AC 2 ms 128 KB
01.txt AC 2 ms 256 KB
02.txt AC 2 ms 256 KB
03.txt AC 2 ms 512 KB
04.txt AC 2 ms 384 KB
05.txt AC 2 ms 384 KB
06.txt AC 11 ms 768 KB
07.txt AC 11 ms 768 KB
08.txt AC 12 ms 896 KB
09.txt AC 11 ms 768 KB
10.txt AC 11 ms 640 KB
11.txt AC 12 ms 896 KB
12.txt AC 11 ms 768 KB
13.txt AC 11 ms 896 KB
14.txt AC 12 ms 896 KB
15.txt AC 11 ms 512 KB