줌으로 가기

  1. 1이재명
  2. 2리플
  3. 3에코프로
  4. 4이다해
  5. 5카나리아바이오
  6. 6애플페이
  7. 7안성훈
  8. 8손흥민
  9. 9전두환 손자
  10. 10이근
이슈검색어 오후 1:05
  1. 1이재명
  2. 2리플
  3. 3에코프로
  4. 4이다해
  5. 5카나리아바이오
  6. 6애플페이
  7. 7안성훈
  8. 8손흥민
  9. 9전두환 손자
  10. 10이근
내이글루 마이리더 포토로그 로그인 줌서비스
  • 뉴스
  • TV
  • 허브
  • 쇼핑
  • 가상화폐
  • 자동차
  • 이슈트렌드

egloos

  • 밸리
  • 테마목록
  • 포스트검색
    • 포스트검색
    • 이글루검색
통합검색 입력

  • 전체인기글
  • 영화
  • 방송&연예
  • 게임
  • 포켓몬GO
  • 애니메이션
  • 만화
  • 도서
  • 음악
  • 공연&전시
  • 음식
  • 애완반려동물
  • 여행
  • 사진
  • 패션&뷰티
  • 연애
  • 개그
  • 일상
  • 육아
  • IT
  • 얼리어답터
  • 지름
  • 자동차
  • 스포츠
  • 뉴스비평
  • 인문사회
  • 역사
  • 세계
  • 과학
  • 토이
  • 창작
  • 벼룩시장
  • 지식Q&A
  • 이글루스
  • 소통밸리

'밸리리더'를 이용하시면, 창이동 없이 빠르고 가볍게 보실 수 있습니다. 밸리리더열기


태그>topcoder(총 77개의 글)

'topcoder' 관련 최근글이글루스 'topcoder' 태그 최근글 이 태그에 글쓰기

  • ChristmasBatteries
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2021/02/07 05:47

    Problem 건전지를 넣어 동작하는 장난감이 있다. 장난감은 총 N개, 건전지는 총 N개다. 장난감 번호는 0에서 N-1이고, i번 장난감은 (i mod 5)개 건전지를 필요로 한다. i번 장난감이 주는 즐거움(fun)의 양은 ((X*i*i + Y*i + Z) mod M)이다. 건전지 N개를 사용해 ..

    Topcoder, SRM796, Easy, 250p, BruteForce

  • 클릭하시면, 다른 썸네일을 보실 수 있습니다. 클릭하시면, 다른 썸네일을 보실 수 있습니다. Flags thumbnail
    Flags
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2021/01/20 00:11

    Problem 주어진 색으로 칠해진 세로줄을 가진 깃발을 설계해야 한다. 같은 색을 가진 줄들은 서로 인접할 수 없으며, 인접하면 안되는 색의 번호가 오름차순 forbidden 배열로 주어진다. 줄을 가장 적게 사용해 깃발을 ..

    Topcoder, SRM147, Hard, 950p, DynamicProgramming

  • GoldenChain
    GoldenChain
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2021/01/12 06:32

    Problem 다양한 길이의 금사슬을 연결해 목걸이를 만들어야 한다. 연결시키려면, 한 사슬의 끝쪽 고리의 일부를 절단하고 이를 다른 사슬의 끝 고리에 연결하면 된다. 고리를 절단하는 횟수를 최소화해서 목걸..

    Topcoder, SRM147, Easy, 950p, AdvancedMath

  • Dragons
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2020/12/29 02:19

    Problem 각 면에 용이 살고 있는 정육면체가 있다. 용은 음식이 담긴 그릇을 갖고 있고, 음식의 양은 면에 표시된다. 매 차례마다 다음 일이 발생한다: 용은 자기와 근접한 면에 있는 용의 음식을 1/4만큼 가지고 올 수 있다. 정육면체 위쪽에 살고 있는 용들의 대장 스노그의 최종 ..

    Topcoder, SRM147, Medium, 500p, Math

  • Masterbrain
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2020/04/02 06:30

    Code public class Masterbrain { String score(String g, String p) { int b = 0, w = 0; boolean[] ug = new boolean[4]; boolean[] up = new boolean[4]; for (int i = 0; i < 4; i+) { if (g.charAt(i)=p.charAt(i)) { b+; ug[..

    Topcoder, SRM146, Hard, 600p, BruteForce

  • BridgeCrossing
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2020/03/19 14:25

    Code import java.util.Arrays; public class BridgeCrossing{ int n, min; boolean[] a; int[] times; void go(int t, int num) { for (int i = 0; i < n; i+) { if (!a[i]) continue; a[i] = false; for (int j = i+1; j < n; j+) { if (!a[j]..

    Topcoder, Hard, 1000p, BruteForce, Recursion

  • RectangularGrid
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2020/03/15 02:32

    Code public class RectangularGrid{ public long countRectangles(int width, int height) { long res = 0; for(int i = 0; i < height; i+) { for(int j = 0; j < width; j+) { if(i = j) continue; res = (height-i) * (width-j); } } return ..

    Topcoder, SRM146, Easy, 300p, Math

  • HillHike
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2020/03/10 23:00

    Code public class HillHike{ public long numPaths(int distance, int maxHeight, int[] _landmarks) { long[][][] cache1 = new long[2][52][51]; long[][][] cache2 = new long[2][52][51]; cache1[0][0][0] = 1; i..

    Topcoder, SRM145, Hard, 1000p, DynamicProgramming

  • Bonuses
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2020/03/02 15:53

    Code public class Bonuses{ public int[] getDivision(int[] points) { int len = points.length; int sum = 0, extra = 100; boolean[] used = new boolean[len]; int[] percents = new int[len]; for (int i = 0; i < len; i+) sum ..

    Topcoder, SRM145, Easy, 250p, SimpleMath

  • VendingMachine
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2020/02/28 15:13

    Code public class VendingMachine{ int rows, cols; int ts; // a total of seconds int ci, cj; // current i, current j; int[][] p; void addSecs(int nj) { int a = Math.abs(nj - cj); int b = cols - Math.abs(nj - cj); ts = (a < b) ? a ..

    Topcoder, SRM145, Medium, 600p, Simulation

  • 클릭하시면, 다른 썸네일을 보실 수 있습니다. 클릭하시면, 다른 썸네일을 보실 수 있습니다. PenLift thumbnail
    PenLift
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2020/02/23 13:25

    Code import java.util.ArrayList; public class PenLift { int len, size; boolean[] usedS, usedV; int[] nv; // num of vertices int[][] adj1, adj2; ArrayList xv, yv; boolean..

    Topcoder, SRM144, Hard, 1100p, Geometry

  • Lottery
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2020/01/16 11:38

    Code import java.util.Arrays;import java.util.Comparator; public class Lottery{ long perm(long a, long b) { long num = 1; for (int i = 0; i < b; i+) num *= a-; return num; } long fact(long a) { long num = 1; for (int i = 2; i <= a;..

    Topcoder, SRM144, Medium, 550p, AdvancedMath

  • PowerOutage
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2020/01/09 13:09

    Code import java.util.LinkedList;import java.util.Queue; public class PowerOutage{ public int estimateTimeout(int[] fromJunction, int[] toJunction, int[] ductLength) { int n = fromJunction.length; int sum = 0; int len = 0; int..

    Topcoder, SRM144, Hard, 1100p, GraphTheory

  • ArithmeticSequenceDiv1
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/12/21 05:36

    Code public class ArithmeticSequenceDiv1 { public int findMinCost(int[] x) { int n = x.length; int min = 10000; int maxGap = 0; for (int i = 0; i < n-1; i+) if(Math.abs(x[i+1]-x[i]) > maxGap) maxGap = Math.abs(x[i+1..

    Topcoder, Easy, 250p, Search, SimpleMath

  • TreasureHunt
    TreasureHunt
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/12/20 20:40

    Code public class TreasureHunt{ int xLen,yLen; char[][] land; String[] inst; boolean instCheck(int x, int y) { int[] dx = {0,-1,1,0}; int[] dy = {-1,0,0,1}; fo..

    Topcoder, Easy, 500p, Iteration, SimpleSearch

1 2 3 4 5 6
이오공감 추천하기
제목:
이오공감운영정책보기
닫기


블로그 BadHoo 기시다시다바리 샤잠신들의분노 호랑이 소설 G3 넷플릭스 던전에서만남을추구하면안되는걸까 소녀전선

zum이슈 검색어 3/22 오후 1:05

  1. 1 이재명 동일
  2. 2 리플 동일
  3. 3 에코프로 동일
  4. 4 이다해 상승
  5. 5 카나리아바이오 하락
  6. 6 애플페이 상승
  7. 7 안성훈 동일
  8. 8 손흥민 하락
  9. 9 전두환 손자 상승
  10. 10 이근 하락
이글루스 안드로이드 앱 출시
  • 이용약관
  • 개인정보처리방침
  • 청소년보호정책
  • 이메일 수집거부
  • 고객센터

Copyright ⓒ ZUM internet. All rights reserved.