平时自用的模板
作者:
Mo_Sol
,
2025-04-11 21:43:53
· 江西
,
所有人可见
,
阅读 11
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<string>
#include<vector>
#include<stack>
#include<bitset>
#include<cstdlib>
#include<cmath>
#include<set>
#include<list>
#include<deque>
#include<map>
#include<queue>
#define pb push_back
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll> pll;
typedef pair<int, int> pii;
typedef pair<double, double> pdd;
int T,n,m;
const double PI = acos(-1.0);
const double eps = 1e-6;
const int INF = 0x3f3f3f3f;
ll MAX = 0x3f3f3f3f3f3f3f3;
ll MIN = -MAX;
const int maxn = 100;
priority_queue<int> p_q;
priority_queue <int,vector<int>,less<int> > less_q;
ll gcd (ll a, ll b)
{
if (b == 0)
return a;
return gcd (b, a % b);
}
int lowbit(int x){
return x & -x ;
}
struct Point
{
int x, y;
bool operator < (const Point &a) const
{
if(x == a.x)
return y < a.y;
return x < a.x;
}
}p[1005];
bool cmp(Point a, Point b)
{
if(a.x == b.x)
return a.y < b.y;
return a.x < b.x;
}
int main() {
scanf("%d",&T);
while(T--) {
cout <<"Hello World!\n";
}
return 0;
}