#define LL long long void readLL(LL *n) { register char c = 0; while (c < 33) c=getc_unlocked(stdin); (*n) = 0; while (c>32) {(*n)=(*n)*10LL + (c-'0'); c=getc_unlocked(stdin);} }
Kategoria: Struktury danych