Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
jongfeel opened this issue Feb 14, 2022 · 8 comments
Closed

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

jongfeel opened this issue Feb 14, 2022 · 8 comments
Assignees
Labels
Milestone

Comments

@jongfeel
Copy link
Member

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

참여 방법:

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

  • 시작: 10시 30분
  • 할 것 이야기: 5분 ~ 10분 간 진행
  • 진행: 2시간, 하지만 쉬는 시간 및 기타 잡일 감안해서 1시간 ~ 1시간 30분 정도로 진행
  • 한 것 이야기: 최대한 12시 40분까지, 조금 오버할 수 있음 (오래 하면 30분 얘기하기도 함)

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

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

@chichoon
Copy link
Member

chichoon commented Feb 15, 2022

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

이번주 할것

  • BFS 문제풀이

한 것

7569 토마토
7562 나이트의 이동

@fora22 fora22 self-assigned this Feb 18, 2022
@fora22
Copy link

fora22 commented Feb 18, 2022

할 일

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

결과

@jongfeel
Copy link
Member Author

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

@fora22
Copy link

fora22 commented Feb 18, 2022

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

두둥등장!

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

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

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

@seoyoungit seoyoungit self-assigned this Feb 18, 2022
@seoyoungit
Copy link

seoyoungit commented Feb 18, 2022

할 일

  • CSS FLEX BOX 강의 듣고 실습해보기
    강의

  • 실습내용 정리하기
    Notion

@Joseph-Cha Joseph-Cha self-assigned this Feb 18, 2022
@soo-bak soo-bak self-assigned this Feb 18, 2022
@soo-bak
Copy link

soo-bak commented Feb 18, 2022

목표

  • 벨만-포드 알고리즘 개념 공부 후 노션에 정리
  • 관련 문제 풀이

결과


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<tll> edges;
  for (int i = 1; i <= cntBus; i++) {
    int from, to, w; cin >> from >> to >> w;
    edges.push_back({from, to, w});
  }

  vector<ll> 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
Copy link
Member

Joseph-Cha commented Feb 19, 2022

할 일

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

정리

링크

@jongfeel
Copy link
Member Author

jongfeel commented Feb 19, 2022

소프트웨어 장인

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


Pull request

@jongfeel jongfeel added this to the 2022 1Q milestone Feb 23, 2022
Repository owner moved this from Todo to Done in Online self-coding meet-up, 2022 Feb 28, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
No open projects
Development

No branches or pull requests

6 participants