Time complexity

Revision en3, by EternalFire, 2018-10-13 11:00:44

Hi,

so far I have known that the time complexity for concatenating two strings is O(n). So

while (a.length() < b.length()) a = "0" + a;

is O(n^2). But it still passed the TL: http://codeforces.com/contest/1066/submission/44198754

I am wondering why it passed. Could anyone help me?

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en3 English EternalFire 2018-10-13 11:00:44 4 Tiny change: 'Hi,\nSo far I ha' -> 'Hi,\n\nso far I ha'
en2 English EternalFire 2018-10-13 11:00:10 5
en1 English EternalFire 2018-10-13 10:58:27 305 Initial revision (published)