質問編集履歴

2

エラーをINT型に変更したものに変更

2018/11/07 03:21

投稿

opyon
opyon

スコア1009

test CHANGED
File without changes
test CHANGED
@@ -32,11 +32,7 @@
32
32
 
33
33
  ```
34
34
 
35
- c:\workvs\alds1_5_2.cpp:29:36:
36
-
37
- error: no matching function for call to
38
-
39
- 'merge(std::vector<long long unsigned int>&, long long unsigned int&, long long unsigned int&, long long unsigned int&)'
35
+ c:\workvs\qa.cpp:13:36: error: no matching function for call to 'merge(std::vector<int>&, int&, int&, int&)'
40
36
 
41
37
  merge(vec, left, mid, right);
42
38
 

1

不要なマクロ削除

2018/11/07 03:20

投稿

opyon
opyon

スコア1009

test CHANGED
File without changes
test CHANGED
@@ -49,8 +49,6 @@
49
49
  ```C++
50
50
 
51
51
  #include <bits/stdc++.h>
52
-
53
- #define rep(i, m, n) for (int i = m; i < n; ++i)
54
52
 
55
53
  const int INF = 2.19e15 + 1;
56
54