Skip to content

Instantly share code, notes, and snippets.

View SubhamPan's full-sized avatar

Subham Pan SubhamPan

View GitHub Profile
@SubhamPan
SubhamPan / kactl_modified_template.cpp
Created October 27, 2025 12:06
better kactl contest template including debugger and a few other changes.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define ll long long
#define endl '\n'
#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define all(x) begin(x), end(x)
#define sz(x) ((ll)((x).size()))
typedef pair<int, int> pii;