The Wayback Machine - https://web.archive.org/web/20210427135344/https://github.com/topics/competitive-programming
Skip to content
#

competitive-programming

Here are 3,593 public repositories matching this topic...

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
gozzarda
gozzarda commented Feb 11, 2021

https://github.com/DOMjudge/domjudge/blob/3f8c8b1f8d69c142ea90d34653c55a2c07d195c7/sql/files/examples/boolfind_cmp/run#L9

The above file and the manual from October 2017 mentioned the existence of a teammessage.txt feedback file that, presumably, would be shown to the team as submission feedback like judgemessage.txt is shown to the judges.

I have recently had cause to desire this functi

Improve this page

Add a description, image, and links to the competitive-programming 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 competitive-programming topic, visit your repo's landing page and select "manage topics."

Learn more