diff options
author | crupest <crupest@outlook.com> | 2020-07-29 16:08:52 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-07-29 16:08:52 +0800 |
commit | 7ed0906675d1a372bd3f0c32ca85bacfa911c617 (patch) | |
tree | 4ec7ac03cc612733f66752e2b9f24ff8b48ed580 /cpp/976.cpp | |
parent | 9b8c27b2ce259dfbd041a000d9b31d168cac18bd (diff) | |
download | solutions-7ed0906675d1a372bd3f0c32ca85bacfa911c617.tar.gz solutions-7ed0906675d1a372bd3f0c32ca85bacfa911c617.tar.bz2 solutions-7ed0906675d1a372bd3f0c32ca85bacfa911c617.zip |
Add problem 976 .
Diffstat (limited to 'cpp/976.cpp')
-rw-r--r-- | cpp/976.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cpp/976.cpp b/cpp/976.cpp new file mode 100644 index 0000000..e306047 --- /dev/null +++ b/cpp/976.cpp @@ -0,0 +1,23 @@ +#include <vector>
+
+using std::vector;
+
+#include <algorithm>
+#include <functional>
+
+class Solution
+{
+public:
+ int largestPerimeter(vector<int> &A)
+ {
+ std::sort(A.begin(), A.end(), std::greater<int>{});
+ for (int i = 0; i < A.size() - 2; i++)
+ {
+ if (A[i] < A[i + 1] + A[i + 2])
+ {
+ return A[i] + A[i + 1] + A[i + 2];
+ }
+ }
+ return 0;
+ }
+};
|