摘要:
A.数列倒序 #include <bits/stdc++.h> using namespace std; const int N = 10010; int a[N]; int main() { for(int i = 1; i <= 10 ; i ++) cin >> a[i]; for(int i 阅读全文
摘要:
A.Buy Lottery Tickets 根据题意直接进行暴力dfs,因为一个return 错了四次 ; #include <bits/stdc++.h> using namespace std; const int N = 1e6 + 10; int a[N], ans[N]; bool st[ 阅读全文
摘要:
A.Buy Lottery Tickets 根据题意直接进行暴力dfs,因为一个return 错了四次 ; #include <bits/stdc++.h> using namespace std; const int N = 1e6 + 10; int a[N], ans[N]; bool st[ 阅读全文