本文主要是介绍PAT 甲级 1048 Find Coins two pointer的写法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
PAT 甲级 1048 Find Coins
这道题可以用二分、散列和two pointers三种方法实现,此前写过二分的方法:PAT 甲级 1048 Find Coins 二分的写法
这里是two pointer的写法
#include <bits/stdc++.h>
using namespace std;
int main()
{
#ifdef LOCALfreopen("input.txt", "r", stdin);
#endifint N, M;cin >> N >> M;vector<int> coins(N);for (auto& i : coins) cin >> i;sort(coins.begin(), coins.end());int i = 0, j = N - 1;while (i < j) {if (coins[i] + coins[j] == M) {cout << coins[i] << " " << coins[j] << endl;break;}else if (coins[i] + coins[j] > M) {--j;}else if (coins[i] + coins[j] < M) {++i;}}if (i == j) cout << "No Solution";
}
这篇关于PAT 甲级 1048 Find Coins two pointer的写法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!