摘要: include using namespace std; int main() { int m, n, num; cin >> m >> n; int arr[999999]; int s[999999]; for (int i = 0; i < m; i++) { cin >> arr[i]; } 阅读全文
posted @ 2024-11-14 21:34 52H1Z 阅读(66) 评论(0) 推荐(0)
摘要: bool hasIncreasingSubarrays(int* nums, int numsSize, int k) { for (int i = 0; i <= numsSize - 2 * k; i++) { bool increasing1 = true; bool increasing2 阅读全文
posted @ 2024-11-13 17:14 52H1Z 阅读(26) 评论(0) 推荐(1)