Seat Occupation

AtCoder
IDarc152_a
Time2000ms
Memory256MB
Difficulty
There is a row of $L$ chairs. Now, $N$ groups of people will come and take seats in order. Each group consists of one or two people, and the $i$\-th group to come consists of $a_i$ people. The total number of people equals $L$. Each group will randomly choose unoccupied chairs where all group members can sit consecutively, and occupy those chairs. However, if there are not enough consecutive unoccupied chairs, they will leave without taking seats. Determine whether it is guaranteed that all $N$ groups can take seats. ## Constraints * $1\leq N\leq 2\times 10^5$ * $1\leq a_i\leq 2$ * $L=a_1 +a_2 +\ldots +a_N$ * All values in the input are integers. ## Input The input is given from Standard Input in the following format: $N$ $L$ $a_1$ $a_2$ $\ldots$ $a_N$ [samples]
Samples
Input #1
2 4
2 2
Output #1
No

Let us number the chairs $1$, $2$, $3$, $4$ from left to right. If the first group of two people takes chairs $2$ and $3$, the next group of two people cannot take seats and will leave. Thus, it is not guaranteed that all $N$ groups can take seats, so you should print `No`.
Input #2
3 4
1 2 1
Output #2
Yes

No matter what chairs they choose, everyone can always take a seat.
API Response (JSON)
{
  "problem": {
    "name": "Seat Occupation",
    "description": {
      "content": "There is a row of $L$ chairs. Now, $N$ groups of people will come and take seats in order. Each group consists of one or two people, and the $i$\\-th group to come consists of $a_i$ people. The total n",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "arc152_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "There is a row of $L$ chairs. Now, $N$ groups of people will come and take seats in order. Each group consists of one or two people, and the $i$\\-th group to come consists of $a_i$ people. The total n...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments