본문 바로가기

전체 글

(37)
[Algorithm] 프로그래머스 - 네트워크(level 3) #include #include #include #include using namespace std; int visited[201] = {0,}; queue q; int solution(int n, vector computers) { int answer = 0; int comCnt = computers.size(); for(int i = 0;i
[Algorithm] 프로그래머스 - 전화번호 목록(level 2) #include #include #include #include using namespace std; bool cmp(string A, string B){ return A < B; } bool solution(vector phone_book) { bool answer = true; // cout
[Algorithm] 프로그래머스 - H-Index(level 2) #include #include #include #include #include #define endl '\n' using namespace std; bool cmp(int a, int b){ if(a!=b) return a>b; } int solution(vector citations) { int answer = 0; sort(citations.begin(), citations.end(), cmp); for(int i = 0;icitations[i]) return i; } return citations.size(); }
[Algorithm] BOJ 16235 - 나무 재테크(C++) 해당 문제는 그냥 시뮬레이션 구현 문제이다. #include #include #include #include using namespace std; typedef struct { int yangbun; vector trees; }Map; int n,m,k; int dx[] = {-1, -1, 0 ,1, 1,1, 0,-1}; int dy[] = {0,-1,-1,-1,0,1,1,1}; //좌 상 우 하 int A[11][11]; Map G[11][11]; void initVar(void){ cin >> n >> m >> k; for(int i = 1; i A[i][j]; G[i][j].yangbun = 5; } } for(int i = 0; i> row >> col >> age; G[row][col].tree..
[Algorithm] 프로그래머스 - 신고 결과 받기(level 1) #include #include #include #include #include #define endl '\n' using namespace std; vector solution(vector id_list, vector report, int k) { vector answer; sort(report.begin(), report.end()); report.erase(unique(report.begin(),report.end()),report.end()); vector report_list[id_list.size()]; map mymap; map reporting_list; int id_cnt = id_list.size(); int *report_cnt = new int[id_cnt]; for(int i =0;i
[IOS] The certificate used to sign "~~~~~"has either expired or has been revoked. An updated certificate is required to sign and install the application. https://stackoverflow.com/questions/36689116/certificate-has-either-expired-or-has-been-revoked Certificate has either expired or has been revoked A while ago I started coding a new iOS app. After a long break from it, I'm working on it again and have it almost complete. I tested it on the simulator but when I tried to install it on my iPhone... stackoverflow.com
[Algorithm] BOJ 1260 - DFS와 BFS (C++) #include #include #include #include #include using namespace std; typedef long long ll; int N, M, V; typedef struct Node { char idx; bool visited = false; vector vec; // char vec_idx = 0; }Node; vector node_vec; void input(void) { cin >> N >> M >> V; Node tmp; tmp.idx = -1; node_vec.push_back(tmp); for (int i = 1; i > a >> b; node_vec[a].vec.push_back(b); node_vec[b].vec.push_back(a); } for (int..
[Embedded] /proc Interface procfs 는 커널 메모리 상에 있는 가상 파일 시스템으로 보통 /proc 위치에 mount 되어 있다. hw interrupt 가 발생하게 되면 device가 작동하고 있는지 아닌지를 check 하기 위해 internel counter가 증가하게 되는데 시스템의 interrupt 와 관련된 통계 정보를 저장하는 /proc/interrupts 파일이 있는데 해당 파일에서 확인할 수 있다. 구체적인 내용은 다음과 같다. 첫 번째 열은 interrupt # 번호이다. 현재 이 시스템은 0,2,8,10,11,12번으로 interrupt가 있는 것이다. 핸들러가 설치되지 않는 경우에는 표시되지 않는다. 두번째 열 부터는 CPU 개수만큼 표시되고 아래의 숫자들은 interrupt 발생 힛수를 의미한다. 네 번째..