http://koramedu.com/bbs/bbs/board.php?bo_table=news2&wr_id=26


만점은 45점으로 응시자의 평균점수는 25점이나 상위권 의대에 진학하려면 36점 이상을 
받아야 합니다. 

엠켓을 수행하는 미국의과대학협회(American Association of Medical Colleges: AAMC)에 
따르면 앞으로 2015년에는 의대 입학시험 4 과목이 다음과 같이 바뀌게 됩니다. 

-분자 및 세포생물학(Molecular and Cellular biology) 
-생화학(Biochemistry) 
-심층 분석 독해(Critical analysis and Reasoning) 
-행동 및 사회과학(Behavioral and social Sciences)


MCAT homepage를 보기에는 그다지 안바뀐 것 같기도 한데.

https://www.aamc.org/students/applying/mcat/about/

In April 2015, the AAMC will launch an updated version of the MCAT exam. Scores are reported in four sections:

  • Biological and Biochemical Foundations of Living Systems
  • Chemical and Physical Foundations of Biological Systems
  • Psychological, Social, and Biological Foundations of Behavior
  • Critical Analysis and Reasoning Skills


http://www.mcat-prep.com/mcat-2015-changes-preparation/

SubjectMCAT 2013 - January 2015MCAT2015
Biology39             45  
Biochemistry0**             30  
Physics26             15  MCAT-2015MCAT-2015
General Chemistry26             20  MCAT-2015
Organic Chemistry13             11  MCAT-2015
Psychology0             38  MCAT-2015MCAT-2015
Sociology0             18  MCAT-2015MCAT-2015
Verbal Reasoning/CARS*40             53  MCAT-2015
Total Number of Questions144             230 MCAT-2015MCAT-2015
Total Time (not including breaks)3 h, 20 m             6 h, 15 m



https://www.kukjei.com/bbs/view.asp?gm_Code=0000000015&Seqno=9004&Page=1&KeyField=&KeyContent=&Topcode=07&LeftCode=&gubun=0

영주권자가 되면 공립 고등학교까지는 학비 무료, 주립대학에 진학하면 외국인에 비해 1/3 미만의 학비만 납부하는 혜택이 있습니다.


하지만, 의대는 영주권자도 불이익이 있기도 한 것 같다.

역시나 시민권이 제일 유리.


by 언제나19 2015. 4. 19. 12:07


qualification round가 이렇게 어려울 줄이야..

괜히 저녁에 시작했다가 피봤다.

체력을 엄청 소비하고 겨우 통과했네.



A. Standing Ovation



B. Infinite House of Pancakes

처음에는 문제를 잘못 이해했다. 1분짜리 move를 할 때, 여러 접시에서 이동할 수 있는 줄 알았는데, 한 접시에서만 pancake를 이동하는 거였네.



C. Dijkstra


quaternion 계산식을 구현하는 것에만 한참 걸렸다. 역시나 class로 만드는 것은 괜히 무리한 건가.




D. Ominous Omino

종이랑 펜은 꼭 준비해 두기.



27시간 안에 20점을 넘어야 통과

A, D만 먼저 풀었으면 금방 안심은 했을텐데.

2747
 
South Korea

Me

5323:07:437:20:42 
 
7:21:25 
 
--
12 wrong tries
--
20:27:42 
3 wrong tries 
20:56:41 
 
22:35:43 
5 wrong tries 
--
1 wrong try










by 언제나19 2015. 4. 18. 09:06


Core Animation in Practice, Part 1Graphics & MediaiOS
Core Animation in Practice, Part 1 Core Animation is the layer-based animation system that powers the dynamic user experience seen in iPhone OS. See Core Animation in action and learn about its architecture, capabilities, and best practices. Learn how to combine the familiar capabilities of UIKit, Quartz 2D, and OpenGL ES with the power of Core Animation layers and animation. Download: HD | SD    | PDF System Requirements
To watch the streaming version of this video, use the latest version of Safari on a Mac running OS X Lion or later. Alternatively, you can download this video in HD and SD.
Core Animation in Practice, Part 2Graphics & MediaiOS

WWDC 2010 Session 123 – Building Animation Driven Interfaces
WWDC 2010 Session 424 – Core Animation in Practice, Part 1
WWDC 2010 Session 425 – Core Animation in Practice, Part 2


https://developer.apple.com/videos/wwdc/2011/#421

  • Core Animation Essentials
  • Graphics, Media, & Games
  • iOS, OS X



2011년 강의로 기초 공부


[CATransactionAnimation setDuration:2];

만으로도 animation을 실행한다.

CAAction protocol

implicit animation이 싫을 땐,

[CATransactionAnimation setDisableActions:YES];


hitTest screen value를 얻을 땐, presentationLayer를 이용하기


Bitmap cache 얘기 같은 것 듣고 싶었는데, 발표자가 시간이 모자랐는지 그냥 넘어가네..


Replicators라는 것도 있네. 변화를 여러 replicator instances에 조금씩 반영?

Particles는 ios5부터. CAEmitterLayer

이것도 쓸 일은 없겠다.


WWDC 2011 Video: Understanding UIKit rendering
WWDC 2012 Video: iOS App performance: Graphics and Animations


drawRect: layer.contents backing store

CA::Layer::layout_and_display_if_needed(CA::Transaction*)


https://developer.apple.com/videos/wwdc/2014/#419

  • Advanced Graphics and Animations for iOS Apps
  • Tools
  • iOS



Layout --> Display --> Prepare --> Commit

layout: CPU, IO

display= drawRect, string drawing: CPU, memory

prepare= image decoding

commit= package up layers and send to render server


  1. animateWithDuration 
  2. layoutSubviews
  3. Render each frame

Command buffer --> Tiler (vertex processing, tiling) --> Parameter buffer --> Render (pixel shader) --> Render buffer

를 연속적으로 pipelining

16.67ms

gpu context switch때문에 gpu idle time이 생기곤 한다.

shouldRasterize

extra offscreen passes when updating content -->> 정적인 content에 쓰기

cache size는 2.5x of screen size에 한정돼있으니까 overuse하지 말기.

rasterized images는 100ms 이상 동안 안쓰인다면 evicted from cache


Tools

performance issue가 있다면, 생각해 보자

  1. frame rate = 60 frame/sec
  2. CPU or GPU bounds
  3. GPU desirable > CPU
  4. fewer offscreen passes
  5. less blending
  6. Dont use strange image formats
  7. visual effects costs
  8. view hierarchy

Instruments

Core animation instrument, OpenGL ES drivier instrument

color blended layers에 check하면, 얼마나 겹쳐 있는지 알 수 있다.

color hit green and ... red: cache 안돼있을 때 빨갛게 표시

color copied images: 지원 안하는 color format 때문에 시간 걸릴 때

color misaligned image

color offscreen yellow




2012, 2013 년에는 mac os x Cocoa Animation

  • Best Practices for Cocoa Animation
  • Frameworks
  • OS X



https://developer.apple.com/videos/wwdc/2012/

Layer-Backed Views: AppKit + Core Animation Essentials OS X
Layer-Backed Views: AppKit + Core AnimationPlay Learn how to effectively use layer-backed views in AppKit to...



한편, 그리기 video가 너무 없네.


https://developer.apple.com/videos/wwdc/2011/#129

Practical Drawing for iOS DevelopersApp FrameworksiOS







by 언제나19 2015. 4. 9. 23:46



A. Charging Chaos


나도 여러 콘센트와 플러그를 맞추기 위해 노력하는데,

문제 출제자도 그런 생각을 했었나 보네.

첫 번째 줄에 나온 2진수들의 몇 개 자릿 수를 flip해서

두 번째 줄 2진수들로 만들기.







by 언제나19 2015. 4. 7. 23:24


2012년 당시보다는 푸는 것이 수월했다.

그래도 1000명 안에는 못 드네 T_T







by 언제나19 2015. 4. 6. 00:22