-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChef and Icecream.cpp
144 lines (119 loc) · 2.32 KB
/
Chef and Icecream.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
***** !!!!! JAI SHREE KRISHNA !!!!! *****
Date -> 25th August 2023
Code by - Abhinav Anand
Problem link -> https://www.codechef.com/problems/CHFICRM
*/
#include <iostream>
#include <algorithm>
#include <bits/stdc++.h>
#define ll long long int
#define nl "\n"
using namespace std;
int N=1000001;
int mod=1000000007;
vector<int> arr(N,true);
vector<int> prime_num;
vector<int> prime_fact(N,-1);
void sieve()
{
arr[0]=arr[1]=0;
for(int i=2;i<=sqrt(N);i++)
{
if(arr[i]==1)
{
for(int j=i*i;j<=N;j+=i)
arr[j]=0;
}
}
for(int i=2;i<=N;i++)
{
if(arr[i])
prime_num.push_back(i);
}
}
void sieve_prime_factor()
{
for(int i=2;i<=N;i++)
{
if(prime_fact[i]==-1)
{
for(int j=i;j<=N;j+=i)
{
// if(prime_fact[j]==-1)
prime_fact[j]=i;
}
}
}
int k;
cin>>k;
while(k>1)
{
cout << prime_fact[k] << " ";
k=k/prime_fact[k];
}
}
bool isprime(int n)
{
for(int i=2;i<=sqrt(n);i++)
{
if(n%i==0)
return false;
}
return true;
}
void solve()
{
// ios_base::sync_with_stdio(0);
// cout.precision(7);
int chf=0,cht=0;
int n,cnt=0;
cin>>n;
int a[n];
for(int i=0;i<n;i++)
cin>>a[i];
for(int i=0;i<n;i++){
if(a[i]==5){
cnt++;
chf++;
}
else{
if(a[i]==10){
if(chf>=1){
chf--;
cnt++;
cht++;
}
else
break;
}
else if(a[i]==15){
if(chf<2 && cht<1){
break;
}
else{
if(cht!=0)
cht--;
else if(chf>=2)
chf-=2;
cnt++;
}
}
}
}
if(cnt==n)
cout << "YES" << endl;
else
cout << "NO" << endl;
}
int main() {
//sieve_prime_factor();
// sieve();
int t;
cin>>t;
while(t--)
{
solve();
}
return 0;
}