작성일 :

문제 링크

8721번 - Wykreślanka

설명

숫자 1 부터 시작하여, 연속된 자연수들로 이루어지는 수열을 만들기위해 몇 개의 원소를 제거해야 하는지 계산하는 문제입니다.


Code

[ C# ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Solution {
  using System.Text;
  class Program {
    static void Main(string[] args) {

      var n = int.Parse(Console.ReadLine()!);

      var a = Console.ReadLine()!.Split(' ').Select(int.Parse).ToArray();

      int num = 1, cntDeletes = 0;
      for (int i = 0; i < n; i++) {
        if (a[i] != num) cntDeletes++;
        else num++;
      }

      Console.WriteLine(cntDeletes);

    }
  }
}



[ C++ ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <bits/stdc++.h>

using namespace std;

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

  int n; cin >> n;

  vector<int> a(n);
  for (int i = 0; i < n; i++)
    cin >> a[i];

  int num = 1, cntDeletes = 0;
  for (int i = 0; i < n; i++) {
    if (a[i] != num) cntDeletes++;
    else num++;
  }

  cout << cntDeletes << "\n";

  return 0;
}