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 | cea61f4f4e8b2d4df882369a265a268e5c09f480 (patch) | |
| tree | 504284b32dd787d1c9509231967dc954933ebab4 /works/solutions/cpp | |
| parent | 321b890fa72435912af9456b072a90e1bff811fb (diff) | |
| download | crupest-cea61f4f4e8b2d4df882369a265a268e5c09f480.tar.gz crupest-cea61f4f4e8b2d4df882369a265a268e5c09f480.tar.bz2 crupest-cea61f4f4e8b2d4df882369a265a268e5c09f480.zip  | |
import(solutions): Add problem 976 .
Diffstat (limited to 'works/solutions/cpp')
| -rw-r--r-- | works/solutions/cpp/976.cpp | 23 | 
1 files changed, 23 insertions, 0 deletions
diff --git a/works/solutions/cpp/976.cpp b/works/solutions/cpp/976.cpp new file mode 100644 index 0000000..e306047 --- /dev/null +++ b/works/solutions/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;
 +    }
 +};
  | 
