Last active
April 5, 2020 06:45
-
-
Save pingsutw/de4919ffb2ae88830c63425706899401 to your computer and use it in GitHub Desktop.
Code Jam Template - Templates for Google Code Jam contest
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 <bits/stdc++.h> | |
using namespace std; | |
#define rep(i, x, y) for (__typeof(x) i = x; i <= y; i++) | |
#define repi(i, x, y) for (__typeof(x) i = x; i >= y; i--) | |
#define trav(a, x) for(auto& a : x) | |
#define all(x) x.begin(), x.end() | |
#define sz(x) (int)(x).size() | |
#define fill(x, y) memset(x, y, sizeof(y)) | |
#define MOD 1000000007 | |
#define PI 3.1415926535897932384626433832795 | |
#define mp make_pair | |
#define pb push_back | |
typedef long long ll; | |
typedef pair<int, int> pii; | |
typedef pair<ll, ll> pll; | |
typedef vector<vector<ll>> vvl; | |
typedef vector<int> vi; | |
typedef vector<vi> vvi; | |
void rsolve() { | |
int n, k; | |
cin >> n >> k; | |
vector<int> choices; | |
} | |
void solve() { | |
int t; | |
cin >> t; | |
for(int casenum = 1; casenum <= t; casenum++) { | |
cout << "Case #" << casenum << ": "; | |
rsolve(); | |
} | |
} | |
int main() { | |
ios_base::sync_with_stdio(false); | |
cin.tie(NULL); cout.tie(NULL); | |
solve(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment