๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ ๋ฉ”๋‰ด ๋ฐ”๋กœ๊ฐ€๊ธฐ

SUEATY ๋ฐœ์€ ๊ฐœ๋ฐœ

ํ”„๋กœํ•„์‚ฌ์ง„
  • ๊ธ€์“ฐ๊ธฐ
  • ๊ด€๋ฆฌ
  • ํƒœ๊ทธ
  • ๋ฐฉ๋ช…๋ก
  • RSS

SUEATY ๋ฐœ์€ ๊ฐœ๋ฐœ

๊ฒ€์ƒ‰ํ•˜๊ธฐ ํผ
  • ๋ถ„๋ฅ˜ ์ „์ฒด๋ณด๊ธฐ (133)
    • iOS (32)
    • CS (60)
      • ์•Œ๊ณ ๋ฆฌ์ฆ˜ (33)
      • Data Science (6)
      • OS (7)
      • Web (9)
      • ๊ธฐํƒ€ (5)
    • SUEATY (37)
      • ์—ฌํ–‰ (5)
      • ๊ธฐ๋ก (19)
      • ํ”„๋กœ์ ํŠธ (13)
  • ๋ฐฉ๋ช…๋ก

์ปดํ“จํ„ฐ๊ณตํ•™ (7)
[SWEA] D3 : 6730, 6718, 6692, 6485

[6730] : ์žฅ์• ๋ฌผ ๊ฒฝ์ฃผ ๋‚œ์ด๋„ ์ž…๋ ฅ : ๋ธ”๋ก์˜ ๋†’์ด๋“ค → ๊ณ ์ •๋œ ๊ฐ’์ด๊ณ , ์‚ฝ์ž… ์‚ญ์ œ๊ฐ€ ์ผ์–ด๋‚˜์ง€ ์•Š์„ ์˜ˆ์ •์ด๋ฏ€๋กœ ๋ฐฐ์—ด(: blocks)์„ ์‚ฌ์šฉ ์ถœ๋ ฅ : 1) ์˜ฌ๋ผ๊ฐˆ ๋•Œ ๊ฐ€์žฅ ์‹ฌํ•œ ๋†’์ด ๋ณ€ํ™” 2) ๋‚ด๋ ค๊ฐˆ ๋–„ ๊ฐ€์žฅ ์‹ฌํ•œ ๋†’์ด ๋ณ€ํ™” ์ „๋žต blocks[i - 1]๊ณผ blocks[i]๋ฅผ ๋น„๊ตํ•ด์„œ up์ธ์ง€ down์ธ์ง€ ํŒ๋ณ„ ๋ฐฉ๊ธˆ ๋น„๊ตํ•œ up / down์ด maxUp / maxDown ๋ณด๋‹ค ํฐ์ง€ ํŒ๋ณ„ํ•ด์„œ ์—…๋ฐ์ดํŠธ #include using namespace std; int main(void){ int testCase; cin >> testCase; for(int t = 0; t > blockCount; // blo..

CS/์•Œ๊ณ ๋ฆฌ์ฆ˜ 2019. 7. 17. 15:57
[SWEA] D2 : 1970, 1979, 1974, 1983

[1970] : ์‰ฌ์šด ๊ฑฐ์Šค๋ฆ„๋ˆ #include using namespace std; void getChange(int); int main(void){ int testCase; cin >> testCase; for(int test = 0; test > changeM; getChange(changeM); } return 0; } void getChange(int money){ int mType[8]{0,}; int static trial = 1; while(money > 9){ if(money >= 50000){ mType[0] += 1; money -= 50000; } else if(money >= 10000){ mType[1] += 1..

CS/์•Œ๊ณ ๋ฆฌ์ฆ˜ 2019. 6. 16. 22:49
[SWEA] D2 : 1859, 1948, 1959, 1966

[1859] : ๋ฐฑ๋งŒ ์žฅ์ž ํ”„๋กœ์ ํŠธ #include using namespace std; int main(void) { int testCase; int day; cin >> testCase; long * ans = new long[testCase]; for (int i = 0; i > day; long * price = new long[day]; long total = 0; for (int j = 0; j > price[j]; long max = price[day - 1]; for (int j = day - 2; j > -1; j--) if (price[j] < max) total += (max - price[j]); else ma..

CS/์•Œ๊ณ ๋ฆฌ์ฆ˜ 2019. 6. 16. 22:40
[SWEA] D2 : 1986, 1984, 1204, 1284

[1986] : ์ง€๊ทธ์žฌ๊ทธ ์ˆซ์ž #include #include #include using namespace std; vector answer; void printAnswer(int); int main(void){ int testCase; cin >> testCase; for(int test = 0; test > num; for(int n = 1; n < num + 1; n++){ if(n % 2 == 0) sum -= n; else sum += n; } answer.push_back(sum); } printAnswer(testCase); return 0; } void printAnswer(int testCase){ for(in..

CS/์•Œ๊ณ ๋ฆฌ์ฆ˜ 2019. 6. 15. 19:35
[SWEA] D1 : 1545, 1933, 1936, 2019

[1545] : ๊ฑฐ๊พธ๋กœ ์ถœ๋ ฅํ•ด ๋ณด์•„์š” #include using namespace std; int main(void){ int N; cin >> N; for(int i = N; i > -1; i--){ cout N; cout

CS/์•Œ๊ณ ๋ฆฌ์ฆ˜ 2019. 6. 15. 19:25
[SWEA] D1 : 2046, 2047, 2050, 2056, 2058

[2046] : ์Šคํƒฌํ”„ ์ฐ๊ธฐ #include using namespace std; int main(void){ int N; cin >> N; for(int i = 0; i input; int i = 0, c; while((c = input[i])){ putchar(toupper(c)); i++; } } [2050] : ์•ŒํŒŒ๋ฒณ์„ ์ˆซ์ž๋กœ ๋ณ€ํ•œ #include #include using namespace std; int main(void){ string input; cin >> input; int size = input.length(); for(int i = 0; i < size; i++) cout N; string dates[N], ans[N]; for(int i = 0; i ..

CS/์•Œ๊ณ ๋ฆฌ์ฆ˜ 2019. 6. 15. 19:14
[SWEA] D1 : 2063, 2068, 2070, 2071, 2072

[2063] : ์ค‘๊ฐ„ ๊ฐ’ ์ฐพ๊ธฐ #include using namespace std; int main(void){ int N, mid; cin >> N; mid = N / 2; int arr[N]; for(int i = 0; i > arr[i]; for (int i = 0; i < N - 1; i++){ int min = i; for(int j = i + 1; j < N; j++) if(arr[j] < arr[min]) min = j; int tmp = arr[min]; arr[min] = arr[i]; arr[i] = tmp; } cout testCase; for (int i = 0; i < testCase; i++) { int big = -1; for (int j = 0; j..

CS/์•Œ๊ณ ๋ฆฌ์ฆ˜ 2019. 6. 15. 19:05
์ด์ „ 1 ๋‹ค์Œ
์ด์ „ ๋‹ค์Œ
๊ณต์ง€์‚ฌํ•ญ
์ตœ๊ทผ์— ์˜ฌ๋ผ์˜จ ๊ธ€
์ตœ๊ทผ์— ๋‹ฌ๋ฆฐ ๋Œ“๊ธ€
Total
Today
Yesterday
๋งํฌ
TAG
  • RxSwift
  • ์ปค๋„ฅํŠธ์žฌ๋‹จ
  • ์ฝ”๋”ฉํ…Œ์ŠคํŠธ
  • ํ”„๋กœ๊ทธ๋ž˜๋จธ์Šค
  • ios
  • ์ธํ„ด
  • TableView
  • ์•Œ๊ณ ๋ฆฌ์ฆ˜
  • ๊ฐœ๋ฐœ์ž์ธํ„ด
  • ์กธ์—…์ž‘ํ’ˆ
  • ์†Œํ”„ํŠธ์›จ์–ด์•„์นด๋ฐ๋ฏธ
  • C++
  • swacademy
  • ์šด์˜์ฒด์ œ
  • ๋ถ€์ŠคํŠธ์บ ํ”„2020
  • ์†Œํ”„ํŠธ์›จ์–ด์—ญ๋Ÿ‰์‹œํ—˜
  • ์‚ผ์„ฑ์†Œํ”„ํŠธ์›จ์–ด์•„์นด๋ฐ๋ฏธ
  • nosql
  • ์ปดํ“จํ„ฐ๊ณตํ•™
  • ์ปด๊ณผ์กธ์ž‘
  • firebase
  • ๋ถ€์ŠคํŠธ์บ ํ”„
  • ๋ถ€์บ 
  • ๋ณด์•ˆ
  • ์‚ผ์„ฑ
  • ์ปด๊ณต์กธ์ž‘
  • SWIFT
  • ๋ฐ์ดํ„ฐ๋ถ„์„
  • ์ฝ”ํ…Œ
  • OS
more
ยซ   2025/05   ยป
์ผ ์›” ํ™” ์ˆ˜ ๋ชฉ ๊ธˆ ํ† 
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
๊ธ€ ๋ณด๊ด€ํ•จ

Blog is powered by Tistory / Designed by Tistory

ํ‹ฐ์Šคํ† ๋ฆฌํˆด๋ฐ”