ThinkAboutSoftware / OnlineSelfCodingGroup

Online coding and study group at every Saturday at 10:30 am.
MIT License
18 stars 4 forks source link

66th online meetup, 2022-02-19 #104

Closed jongfeel closed 2 years ago

jongfeel commented 2 years ago

https://meet.google.com/jyx-mxnq-kpk

참여 방법:

Assignees에 자신의 github 계정을 self로 추가 2시간 분량의 할 내용에 대해 댓글 작성 (최소 모임 시작 전까지) 빛의 속도 혹은 (주말, 휴일 포함) 최소 3일 내에 구글 캘린더 등록 메일 확인 모임 시간에 각자 개발 관련된 공부 진행

모임 끝난 후 공부한 내용 정리 & 링크 추가 => 최소 다음 모각코 전까지 확인 가능해야 함.

주의: 회사일 혹은 마감 기한 임박한 일 처리의 경우는 최대한 자제해 주세요. 주말 아침에 일하면 우울하니까요. ㅜㅜ

chichoon commented 2 years ago

이번 모각코는 중간탈주 없읍니다 (약속이없기때문!)

이번주 할것

한 것

7569 토마토 7562 나이트의 이동

fora22 commented 2 years ago

할 일

빅데이터를 지탱하는 기술들의 4-4챕터 비구조화 데이터의 분산스토리지를 읽고 Notion에 정리

jongfeel commented 2 years ago

@fora22 오랜만이군요! 반갑습니다. 노션에 이미 정리가 잘 되어 있는 거 같은데 책의 어느 부분을 읽고 정리하는지 챕터나 페이지를 적어 주시면 좋을 거 같습니다.

fora22 commented 2 years ago

@fora22 오랜만이군요! 반갑습니다. 노션에 이미 정리가 잘 되어 있는 거 같은데 책의 어느 부분을 읽고 정리하는지 챕터나 페이지를 적어 주시면 좋을 거 같습니다.

두둥등장!

처음 했을 떄가 엊그제 같은데 벌써 66번째라니...감개무량 하네요. ㅠㅠ 이렇게 계속 좋은 모임을 지속해주셔서 감사합니다 멘토님 ㅎㅎ

오랜만에 하다보니 구체적으로 계획 적는 것을 깜빡했네요.

오늘도 추가적으로 작성 중이라서, 오늘 작성이 완료되는대로 내일은 어느 부분을 정리할지 적도록 하겠습니다!

seoyoungit commented 2 years ago

할 일

soo-bak commented 2 years ago

목표

using namespace std;

define MAX 500 + 1

define INF 987654321

typedef long long ll; typedef tuple<ll, ll, ll> tll;

int main() { ios::sync_with_stdio(false); cin.tie(nullptr);

int cntCity, cntBus; cin >> cntCity >> cntBus; vector edges; for (int i = 1; i <= cntBus; i++) { int from, to, w; cin >> from >> to >> w; edges.push_back({from, to, w}); }

vector dist(MAX, INF); dist[1] = 0; bool isNegCycle = false;

for (int i = 1; i <= cntCity; i++) { for (auto e : edges) { int from, to, w; tie(from, to, w) = e; if (dist[from] == INF) continue ; if (i == cntCity && dist[to] > dist[from] + w) isNegCycle = true; else dist[to] = min(dist[to], dist[from] + w); } }

if (isNegCycle) cout << -1 << "\n"; else { for (int i = 2; i <= cntCity; i++) { if (dist[i] == INF) cout << -1 << "\n"; else cout << dist[i] << "\n"; } }

return 0; }

Joseph-Cha commented 2 years ago

할 일

MVP 패턴 스터디 및 노션에 정리 => Unity UI 시스템에 적용을 위해서

정리

링크

jongfeel commented 2 years ago

소프트웨어 장인

Academic conference 2021에서 마저 못했던 내용에 대해 책 읽고 pull request 작성


Pull request