반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- BFS
- 매개변수탐색
- 이분탐색
- Docker
- 처우산정
- 6987
- incr
- 소프티어
- 오퍼레터
- @P0
- 연결요소
- 파라메트릭
- boj #19237 #어른 상어
- BOJ
- 물채우기
- 경력
- 13908
- msSQL
- softeer
- upper_bound
- 기술면접
- OFFSET
- Kafka
- 퇴사통보
- dfs
- 백준
- 처우협의
- 성적평가
- 백트래킹
- compose
Archives
- Today
- Total
기술 블로그
11758번 CCW 본문
728x90
반응형
http://hsdevelopment.tistory.com/123
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> using namespace std; int ccw(int x1, int y1, int x2, int y2, int x3, int y3) { int temp = x1*y2 + x2*y3 + x3*y1; temp = temp - y1*x2 - y2*x3 - y3*x1; if (temp > 0) return 1; // 반시계 else if (temp < 0) return -1; // 시계 else return 0; // 일직선 } int main(void) { int x1 = 0, y1 = 0, x2 = 0, y2 = 0, x3 = 0, y3 = 0; scanf("%d %d %d %d %d %d", &x1, &y1, &x2, &y2, &x3, &y3); printf("%d\n", ccw(x1, y1, x2, y2, x3, y3)); return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
1032번 명령 프롬프트 (0) | 2018.10.29 |
---|---|
13300번 방 배정 (0) | 2018.10.28 |
2003번 수들의 합 2 (0) | 2018.10.27 |
2178번 미로 탐색 (0) | 2018.10.27 |
1316번 그룹 단어 체커 (0) | 2018.10.27 |