Submission #5445122


Source Code Expand

/**
 *      purpose : 
 *      author  : kyomukyomupurin
 *      created : 
**/

// input/output
#include <iostream>
#include <fstream>
#include <sstream>
// container class
#include <array>
#include <deque>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
// math, algorithm
#include <algorithm>
#include <cmath>
#include <complex>
#include <numeric>
// etc
#include <bitset>
#include <cassert>
#include <cctype>
#include <cstring>
#include <chrono>
#include <iomanip>
#include <random>
#include <utility>
// using-directive
using namespace std;
// alias template
using int64 = int64_t;
using pii = pair<int, int>;
using pll = pair<int64_t, int64_t>;
// text macro replacement
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define all(v) (v).begin(), (v).end()
#define rall(v) (v).rbegin(), (v).rend()
#define print(x) cout << (x) << '\n'
#define debug(x) cout << #x << ": " << (x) << '\n'
// variadic template
template<typename T> inline void chmin(T &a, T b) {if (a > b) a = b; return;}
template<typename T> inline void chmax(T &a, T b) {if (a < b) a = b; return;}

int main(){
  ios_base::sync_with_stdio(false);
  cin.tie(nullptr);

  int n; cin >> n;
  vector<int> a(n);
  map<int, int> mp;
  for (int i = 0; i < n; ++i) {
    cin >> a[i]; ++mp[a[i]];
  }

  int even = 0;
  for (auto it = mp.begin(); it != mp.end(); ++it) {
    even += !(it->second & 1);
  }

  sort(all(a));

  int cnt = 0, beg = 0;
  while (beg < n) {
    int end = beg;
    while (end + 1 < n && a[end + 1] == a[beg]) ++end;
    ++cnt; beg = end + 1;
  }
  // debug(even);
  if (even & 1) {
    print(cnt - 1);
  } else {
    print(cnt);
  }

  return 0;
}

Submission Info

Submission Time
Task D - Card Eater
User kyomukyomupurin
Language C++14 (GCC 5.4.1)
Score 400
Code Size 1825 Byte
Status AC
Exec Time 34 ms
Memory 5376 KB

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 1 ms 256 KB
00_example_02.txt AC 1 ms 256 KB
01.txt AC 1 ms 256 KB
02.txt AC 2 ms 256 KB
03.txt AC 1 ms 256 KB
04.txt AC 1 ms 256 KB
05.txt AC 1 ms 256 KB
06.txt AC 16 ms 640 KB
07.txt AC 16 ms 640 KB
08.txt AC 27 ms 1152 KB
09.txt AC 16 ms 640 KB
10.txt AC 14 ms 640 KB
11.txt AC 26 ms 1024 KB
12.txt AC 16 ms 640 KB
13.txt AC 21 ms 768 KB
14.txt AC 34 ms 5376 KB
15.txt AC 11 ms 640 KB