Codeforces Round #387 (Div. 2), problem: (E) Comments Solution in C/C++
Codeforces Round #387 (Div. 2), problem: (E) Comments Solution in C/C++ #include <stdio.h> #include <string.h> #include <stdlib.h> #define N 1000000 int ccnt; struct comment { char *s; int d, i; } cc[N]; char *ss[N]; int parse(int d, int i) { int k = [...]