프로그래머스 120875 평행

Jmnote (토론 | 기여)님의 2023년 11월 9일 (목) 00:30 판 (새 문서: ==개요== {{프로그래머스|레벨=0|페이지=9}} ==C++== <syntaxhighlight lang='cpp'> #include <string> #include <vector> using namespace std; bool isParallel(vector<vector<i...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

프로그래머스 120875 평행


2 C++

#include <string>
#include <vector>

using namespace std;

bool isParallel(vector<vector<int>> line1, vector<vector<int>> line2) {
    int dy1 = line1[0][1] - line1[1][1];
    int dy2 = line2[0][1] - line2[1][1];
    if(dy1 == 0) {
        return dy2 == 0;
    }
    int dx1 = line1[0][0] - line1[1][0];
    int dx2 = line2[0][0] - line2[1][0];
    return dx1 * dy2 == dx2 * dy1;
}

int solution(vector<vector<int>> dots) {
    if(isParallel(vector<vector<int>> {dots[0],dots[1]}, vector<vector<int>> {dots[2],dots[3]})) {
        return 1;
    }
    if(isParallel(vector<vector<int>> {dots[0],dots[2]}, vector<vector<int>> {dots[1],dots[3]})) {
        return 1;
    }
    if(isParallel(vector<vector<int>> {dots[0],dots[3]}, vector<vector<int>> {dots[1],dots[2]})) {
        return 1;
    }
    return 0;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}