Submission #3421484


Source Code Expand

#include <bits/stdc++.h>
using namespace std;

int main() {
  int n, c;
  deque<int> dq;
  cin >> n >> c;
  for (int i = 0; i < n; ++i) {
    int a;
    cin >> a;
    dq.push_back(a);
  }
  sort(dq.begin(), dq.end());
  reverse(dq.begin(), dq.end());
  int ans = 0;
  while (!dq.empty()) {
    ans++;
    int l = dq.front();
    dq.pop_front();
    if (dq.empty()) break;
    if (l + dq.back() + 1 <= c) {
      dq.pop_back();
    }
  }
  cout << ans << endl;
  return 0;
}

Submission Info

Submission Time
Task C - 収納
User xuelei
Language C++14 (GCC 5.4.1)
Score 300
Code Size 501 Byte
Status AC
Exec Time 48 ms
Memory 640 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 16
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, 13.txt, sample_01.txt, sample_02.txt, sample_03.txt
Case Name Status Exec Time Memory
01.txt AC 47 ms 640 KB
02.txt AC 48 ms 640 KB
03.txt AC 31 ms 640 KB
04.txt AC 45 ms 640 KB
05.txt AC 26 ms 640 KB
06.txt AC 19 ms 640 KB
07.txt AC 28 ms 640 KB
08.txt AC 36 ms 640 KB
09.txt AC 39 ms 640 KB
10.txt AC 19 ms 640 KB
11.txt AC 47 ms 640 KB
12.txt AC 47 ms 640 KB
13.txt AC 29 ms 640 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