This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <fstream> | |
#define ui unsigned int | |
#define scuc static_cast<unsigned char> | |
#define scc static_cast<char> | |
#define b std::ios::binary | |
#define ifs std::ifstream | |
#define ofs std::ofstream | |
ui high(ui h, bool &t) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "popipa.h" | |
#include <iostream> | |
int main(int argc, char *argv[]) { | |
if (argc != 2) { | |
std::cout << "Usage: " << argv[0] << " -e/-d" << std::endl; | |
return 1; | |
} | |
std::string input; | |
std::cin >> input; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> | |
#include <vector> | |
#define let const auto | |
#define var auto | |
#define fn auto | |
const int BASE64_DECODE_TABLE[128] = { | |
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, | |
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdint> | |
#include <cstdio> | |
#include <string> | |
#include <vector> | |
#define let const auto | |
#define fn auto | |
#define arr const std::vector<double> | |
#define str const std::string |