摘要:
#include<iostream> using namespace std; int main(){ int n, x1, y1; cin >> n; int a[10001], b[10001], x[10001], y[10001]; for (int i = 0; i < n; i++) { 阅读全文
摘要:
/#include<iostream>//using namespace std;//bool vis[25][25];//long long step[25][25];//就是 dp 数组//int main()//{// step[1][1] = 1;// int n, m, x, y;// c 阅读全文
摘要:
class Solution { public: vector<int> twoSum(vector<int>& nums, int target) { int n = nums.size(); vector<int>idxs; for(int i = 0;i<n;i++) idxs.push_ba 阅读全文