Please subscribe to the official Codeforces channel in Telegram via the link https://t.me/codeforces_official. ×

AlTarek's blog

By AlTarek, history, 14 months ago, In English

in this Problem https://codeforces.com/contest/1829/problem/E

I Got a runTime Error because of this way of resizing my vector

grid.resize(n, vector(m));

but when I used this

grid = vector<vector>(n, vector(m));

it worked ?! What is the difference?

https://codeforces.com/contest/1829/submission/205458152 => Runtime Error

https://codeforces.com/contest/1829/submission/205697075 => Acc

Full text and comments »

  • Vote: I like it
  • -8
  • Vote: I do not like it