Skip to content

Instantly share code, notes, and snippets.

#include <bits/stdc++.h>
#define MAX_DRY_TIME 10001
typedef unsigned long long ull;
using namespace std;
int main() {
ull num_rain, num_clothe, num_go;
#include <bits/stdc++.h>
typedef unsigned long long ull;
using namespace std;
int main () {
ull test_cases;
cin >> test_cases;
// The problem description can be found here... https://youtu.be/k4Nn33QiZ3M
#include <bits/stdc++.h>
// Cyclic shift the std::string to left for 1 bit
void CyclicShiftLeft1(std::string& bit_str) {
bit_str.push_back(bit_str[0]);
bit_str.erase(0, 1);
return;
}