Skip to content
#

codeforces

Here are 1,047 public repositories matching this topic...

cpeditor
usaco-guide
thecodingwizard
thecodingwizard commented Feb 19, 2021

For C++ code, especially for Bronze through Gold, we should use (at most) the following template:

#include <bits/stdc++.h> // see /general/running-code-locally
using namespace std;

using ll = long long;

using vi = vector<int>;
#define pb push_back
#define all(x) begin(x), end(x)
#define sz(x) (int)(x).size()

using pi = pair<int,int>;
#define f first
#define s second
#def
kothariji
kothariji commented Sep 30, 2020

Step 1 - Fork this repository.
Step 2 - Clone the repository to yuor local machine.
Step 3 - Resolve this bugs, mentions provided in the Issues section of the repository. Also add a description what changes you ahve done.
Step 4 - Add the changes to your repository.
Step 5 - Create a PULL Request. And that's all.
NOTE - Please start the filename with platform name on which theproblem was solv

Improve this page

Add a description, image, and links to the codeforces topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the codeforces topic, visit your repo's landing page and select "manage topics."

Learn more