よじろめ覚書

私の理解度重視のソースコードです。

2019-12-25から1日間の記事一覧

ABC121B - Can you solve this?

ABC

問題:B - Can you solve this? #include <iostream> #include <vector> using namespace std; #define REP(i, n) for (int i = 0; i < (n); ++i) int main(void) { int n, m, c; cin.tie(0); ios::sync_with_stdio(false); cin >> n >> m >> c; vector<int>a(m), b(m); REP(i, m) {</int></vector></iostream>…