tatyam’s blog

(ノ) - ω - (ヾ)モチモチ

2020-04-01から1ヶ月間の記事一覧

AtCoder Beginner Contest 162 F - Select Half

きれいな実装をします。 #include <bits/stdc++.h> using namespace std; using ll = long long; const ll INF = 0x1fffffffffffffff; template<class T, class U> bool chmax(T& a, const U& b){ if(a < b){ a = b; return 1; } return 0; } int main(){ ll n; cin >> n; vector<ll> a(n); for(au</ll></class></bits/stdc++.h>…

Google Code Jam まとめ

Google Code Jam ってどんなコンテストなんでしょうか…? 調べてみました! 注 : 2020 年の情報です。 GCJ とは…? Google 社主催の年1回の世界最大規模の競技プログラミングのコンテストです。 Round 3 まで進出するとTシャツがもらえます! スケジュール C…