We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c39e10 commit 8711dc0Copy full SHA for 8711dc0
src/0006.vector_push_back/vector_push_back.cc
@@ -1,16 +1,16 @@
1
#include<fast_io.h>
2
-#include<fast_io_dsal.h>
+#include<fast_io_dsal/vector.h>
3
#include<fast_io_driver/timer.h>
4
5
int main()
6
{
7
constexpr ::std::size_t N{20000000};
8
::std::size_t capacity{};
9
10
- ::fast_io::timer timer("::fast_io::vector<::std::size_t>");
+ ::fast_io::timer timer_total(u8"::fast_io::vector<::std::size_t>");
11
::fast_io::vector<::std::size_t> vec;
12
13
- ::fast_io::timer timer("::fast_io::vector<::std::size_t> push_back");
+ ::fast_io::timer timer_push_back(u8"::fast_io::vector<::std::size_t> push_back");
14
for(::std::size_t i{};i!=N;++i)
15
16
vec.push_back(i);
0 commit comments