Notice
Recent Posts
Recent Comments
- Today
- Total
01-26 01:17
Tags
- OOP
- tree
- PS
- java
- ์๋ฃ๊ตฌ์กฐ
- database
- ์๋ฐ์์ ์
- BFS
- MST
- ์ธํด
- ํ๋ก๊ทธ๋๋จธ์ค
- spring
- pytorch
- Algorithm
- CS
- ๋ฐฑ์๋
- ๋ฐฑ์ค
- ๊ตฌํ
- leetcode
- Graph
- dp
- ์์์ ๋ ฌ
- array
- ์๋ฐ
- ๋ฐ์ดํฐ๋ฒ ์ด์ค
- ๋ค์ต์คํธ๋ผ
- ๊ทธ๋ฆฌ๋
- ์กธ์ ์ํ
- ๋ฒจ๋งํฌ๋
- ๋ฌธ๋ฒ
Link
Partially Committed
[์๊ฐ ์ฝ๋ ์ฑ๋ฆฐ์ง ์์ฆ2] ์์ ๋ํ๊ธฐ ๋ณธ๋ฌธ
๐ฅ Algorithm || ๋ฌธ์ ํ์ด/PS
[์๊ฐ ์ฝ๋ ์ฑ๋ฆฐ์ง ์์ฆ2] ์์ ๋ํ๊ธฐ
WonderJay 2022. 7. 1. 22:12728x90
๋ฐ์ํ
SMALL
https://programmers.co.kr/learn/courses/30/lessons/76501
absolute ๋ฐฐ์ด์ ์ํํ๋ฉด์ sign ๋ฐฐ์ด์ ํ์ธํ๊ณ true ๋ฉด ๋ํ๊ณ false ๋ฉด ๋นผ์ answer ์ ์ ์ฅํ๋ค.
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> absolutes, vector<bool> signs) {
int answer = 123456789;
int sum = 0;
for (int i = 0; i < absolutes.size(); i++)
{
if (signs[i] == true) // positive
{
sum += absolutes[i];
}
else
{
sum -= absolutes[i];
}
}
answer = sum;
return answer;
}
728x90
๋ฐ์ํ
LIST
'๐ฅ Algorithm || ๋ฌธ์ ํ์ด > PS' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Summer/Winter Coding(~2018)] ์์ ๋ง๋ค๊ธฐ (0) | 2022.07.01 |
---|---|
[์๊ฐ ์ฝ๋ ์ฑ๋ฆฐ์ง ์์ฆ1] ๋ด์ (0) | 2022.07.01 |
[์๊ฐ ์ฝ๋ ์ฑ๋ฆฐ์ง ์์ฆ3] ์๋ ์ซ์ ๋ํ๊ธฐ (0) | 2022.07.01 |
[ํ๋ก๊ทธ๋๋จธ์ค] ํฌ๋ ์ธ ์ธํ๋ฝ๊ธฐ ๊ฒ์ (0) | 2022.07.01 |
[2020 ์นด์นด์ค ์ธํด์ญ] ํคํจ๋ ๋๋ฅด๊ธฐ (0) | 2022.06.29 |
Comments