From 5565beca67266d65b28d0c0ad5d1a06178ede73f Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Mon, 27 May 2024 16:30:12 +0300 Subject: Solved two dp problems on cses --- codeforces/TechnicalSupport/main.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'codeforces/TechnicalSupport') diff --git a/codeforces/TechnicalSupport/main.cpp b/codeforces/TechnicalSupport/main.cpp index 57e8dd3..c9ee12d 100755 --- a/codeforces/TechnicalSupport/main.cpp +++ b/codeforces/TechnicalSupport/main.cpp @@ -1,4 +1,4 @@ -#include +#include using namespace std; @@ -38,14 +38,14 @@ void solve() { cout << (cnt == 0 ? "Yes" : "No") << '\n'; } -int main () { - ios_base::sync_with_stdio(false); - cin.tie(NULL); - int tt; - cin >> tt; - while(tt--) { +int main() { + ios_base::sync_with_stdio(false); + cin.tie(NULL); + int tt; + cin >> tt; + while (tt--) { solve(); - } + } } /* stuff you should look for: -- cgit v1.2.3