ACM International Collegiate Programming Contest

Size: px
Start display at page:

Download "ACM International Collegiate Programming Contest"

Transcription

1 Problem A Castles The country ICPCIA has a river called river of castles. In the past, ICPCIA was divided into two kingdoms called Westeria and Eastania. Two kingdoms were separated by the river which runs in the direction from northwest to southeast. Both kingdoms had competitively built many castles for defense and attack along the riverside. All castles of each side of the river are located with an x-monotone increasing and y-monotone decreasing feature. In other words, let S = {s 1, s 2,, s n } be the castles of Westeria and T = {t 1, t 2,, t m } the castles of Eastania. Let (x i, y i ) (resp. (u i, v i )) be the coordinates of s i (resp. t i ). Then x i < x j and y i > y j if i < j. Also, u i < u j and v i > v j if i < j. Now, the Ministry of Culture and Tourism of ICPCIA decided to build a beautiful bridge connecting two castles on the opposite side of the river. The bridge will be an I-shape(a horizontal segment or a vertical segment) or an L-shape(both of a horizontal segment and a vertical segment). They want to find the location of the bridge such that its length is as small as possible. So, they try to find the closest pair of castles on the opposite side. The distance between two castles s i and t j is computed by x i - u j + y i - v j. Given the information of two sets of castles, write a program to find the distance between the closest castles on the opposite side of the river. Input Your program is to read from standard input. The input consists of T test cases. The number of test cases T is given in the first line of the input. Each test case consists of three lines. The first line of each test case contains two integers. The first integer, n, is the number of castles in the west side of the river, and the integer, m, is the number of castles in the east side of it, where 1 n, m 200,000. The second line of each test case contains 2n integers x 1, y 1, x 2, y 2,, x n, y n, where (x i, y i ) is the coordinate of the i-th castle in the west side of the river and x i < x j and y i > y j if i < j. The last line of each test case contains 2m integers u 1, v 1, u 2, v 2,, u m, v m, where (u i, v i ) is the coordinate of the i-th castle in the east side of the river and u i < u j and v i > v j if i < j. You may assume ICPC 2011 Problem A: Castles

2 that there exists an x-monotone increasing and y-monotone decreasing path which separates two sets of castles. All integers representing the coordinates of castles are between and 10 9, inclusive. Output Your program is to write to standard output. Print exactly one line for each test case. The line should contain the distance between the closest castles on the opposite side of the river. The following shows sample input and output for two test cases. Sample Input ICPC 2011 Problem A: Castles

3 Problem B 크로스컨트리 크로스컨트리달리기는주자들이자연적인야외의지형에만들어진코스를달리는운동경기이다. 경주 코스는일반적으로 4 에서 12 킬로미터이며, 숲이나넓은땅을통과하는풀과흙으로된지면과언덕과 평평한지형을포함한다. 이경기는주자들의개인성적을매기고, 이를가지고팀의점수를계산한다. 한팀은여섯명의선수로구성되며, 팀점수는상위네명의주자의점수를합하여계산한다. 점수는자격을갖춘팀의주자들에게만주어지며, 결승점을통과한순서대로점수를받는다. 이점수를더하여가장낮은점수를얻는팀이우승을하게된다. 여섯명의주자가참가하지못한팀은점수계산에서제외된다. 동점의경우에는다섯번째주자가가장빨리들어온팀이우승하게된다. 예를들어, 다음의표를살펴보자. 등수 팀 A B C C A C B D A A C A C C A 점수 1 n/a n/a n/a 팀 B 와 D 는선수의수가여섯이아니므로, 점수를받을수없다. 팀 A 의점수는 18 ( ) 이고, 팀 C 의 점수는 18 ( ) 이다. 이경우두팀의점수가같으므로다섯번째로결승점을통과한선수를고려한다, A 팀의다섯번째선수의점수가 C 팀의다섯번째선수의점수보다적으므로 A 팀이우승팀이된다. 모든선수들의등수가주어질때, 우승팀을구하는프로그램을작성하라. 각팀의참가선수가여섯보다 작으면그팀은점수계산에서제외됨을주의하라. 여섯명보다많은선수가참가하는팀은없고, 적어도한 팀은참가선수가여섯이며, 모든선수는끝까지완주를한다고가정한다. 입력입력데이터는표준입력을사용한다. 입력은 T 개의테스트케이스로주어진다. 입력파일의첫번째줄에테스트케이스의수를나타내는정수 T 가주어진다. 두번째줄부터는두줄에하나의테스트케이스에해당하는데이터가주어진다. 각테스트케이스의첫번째줄에는하나의정수 N (6 N 1,000) 이주어진다. 두번째줄에는팀번호를나타내는 N 개의정수 t 1, t 2,, t N 이공백을사이에두고주어진다. 각팀은 1 과 M(1 M 200) 사이의정수로표현된다. ICPC 2011 Problem B: Cross Country

4 출력 출력은표준출력을사용한다. 하나의테스트케이스에대한우승팀의번호를한줄에출력한다. 다음은두개의테스트데이터에대한입력과출력의예이다. Sample Input ICPC 2011 Problem B: Cross Country

5 Problem C Cube of a Graph The cube of a graph is the graph on the vertex set in which two vertices are joined by an edge if their distance in is at most three, where the distance between two vertices in a graph is defined as the number of edges in a shortest path connecting them. A bridge (also known as a cut-edge) of a graph is an edge whose deletion increases the number of connected components. Equivalently, an edge is a bridge if and only if it is not contained in any cycle. To study hamiltonian properties of the cubes of connected graphs, the following notions concerned with bridge were suggested in early 1960 s. A bridge of a graph is said to be nontrivial if neither vertex incident with the edge is of degree one, where the degree of a vertex is the number of edges incident to it. See Figure 1. A vertex of is called a pure bridge vertex if each edge incident to the vertex is a nontrivial bridge. A set of three distinct mutually adjacent vertices, each of degree at least three, is called a pure bridge triangle if each edge of that is incident with exactly one of three vertices is a nontrivial bridge Figure 1. A connected graph which has seven nontrivial bridges represented by dotted lines. There are three pure bridge vertices 7, 8, and 15, one pure bridge triangle, and one pure bridge pair. It has been known that the cube of any connected graph is hamiltonian-connected, i.e. every two vertices of are connected by a hamiltonian path. Recently, an ambitious research project on strong hamiltonian properties of graphs was initiated by Prof. Cho, who is a highly considered graph theorist. He introduced a new notion called pure bridge pair to characterize some interesting hamiltonian properties. A set of two adjacent vertices is called a pure bridge pair if both vertices are pure bridge vertices. To support Prof. Cho s research, you are to write an efficient running program to identify all the pure bridge vertices, pure bridge triangles, and pure bridge pairs in a large connected graph. Input Your program is to read from standard input. The input consists of T test cases. The number of test cases T is given in the first line of the input. The first line of each test case contains two positive integers. The first ICPC 2011 Problem C: Cube of a Graph

6 integer is the number of vertices and the second integer is the number of edges in an input graph, where and. In the following lines, each line contains two integers and which means is an edge of. You may assume that is connected and the vertex set of is. Output Your program is to write to standard output. Print exactly one line for each test case. The line should contain the numbers of pure bridge vertices, pure bridge triangles, and pure bridge pairs in sequence. The following shows sample input and output for two test cases. Sample Input ICPC 2011 Problem C: Cube of a Graph

7 Problem D DSLR 네개의명령어 D, S, L, R 을이용하는간단한계산기가있다. 이계산기에는레지스터가하나있는데, 이레지스터에는 0 이상 10,000 미만의십진수를저장할수있다. 각명령어는이레지스터에저장된을다음과같이변환한다. 의네자릿수를,,, 라고하자 ( 즉 = (( 10 + ) 10 + ) 10 + 라고하자 ). (1) D: D 는을두배로바꾼다. 결과값이 9999 보다큰경우에는 으로나눈나머지를취한다. 그결과값 ( mod 10000) 을레지스터에저장한다. (2) S: S 는에서 1 을뺀결과을레지스터에저장한다. 이 0 이라면 9999 가대신레지스터에저장된다. (3) L: L 은의각자릿수를왼편으로회전시켜그결과를레지스터에저장한다. 이연산이끝나면레지스터에저장된네자릿수는왼편부터,,, 이된다. (4) R: R 은의각자릿수를오른편으로회전시켜그결과를레지스터에저장한다. 이연산이끝나면레지스터에저장된네자릿수는왼편부터,,, 이된다. 위에서언급한것처럼, L 과 R 명령어는십진자릿수를가정하고연산을수행한다. 예를들어서 = 1234 라면여기에 L 을적용하면 2341 이되고 R 을적용하면 4123 이된다. 여러분이작성할프로그램은주어진서로다른두정수 와 에대하여 를 로바꾸는 최소한의명령어를생성하는프로그램이다. 예를들어서 = 1234, = 3412 라면다음과같이두개의 명령어를적용하면를로변환할수있다 L 2341 L R 4123 R 3412 따라서여러분의프로그램은이경우에 LL 이나 RR 을출력해야한다. 의자릿수로 0 이포함된경우에주의해야한다. 예를들어서 1000 에 L 을적용하면 0001 이되므로결과는 1 이된다. 그러나 R 을적용하면 0100 이되므로결과는 100 이된다. Input 프로그램은표준입력으로입력을받는다. 프로그램입력은 T 개의테스트케이스로구성된다. 테스트케이스개수 T 는입력의첫줄에주어진다. 각테스트케이스로는두개의정수와가공백으로분리되어차례로주어지는데는레지스터의초기값을나타내고는최종값을나타낸다. 와는모두 0 이상 10,000 미만이다. ICPC 2011 Problem D: DSLR

8 Output 여러분의프로그램은표준출력에출력해야한다. 에서로변환하기위해필요한최소한의명령어나열을출력한다. 다음은세개의테스트케이스에대한샘플입출력이다. Sample Input LL L DDDD ICPC 2011 Problem D: DSLR

9 Problem E Goldbach s Conjecture A natural number is called a prime number (or a prime) if it is bigger than 1 and has no divisors other than 1 and itself. For example, 5 is prime, since no number except 1 and 5 divides it. On the other hand, 6 is not a prime since Goldbach's conjecture is one of the famous unsolved problems in number theory and in all of mathematics. It states: Every even integer greater than 2 can be expressed as the sum of two primes. Such a number is called a Goldbach number. Expressing a given even number as a sum of two primes is called a Goldbach partition of the number. For example, 4 2 2, 6 3 3, 8 3 5, or , , or Note that Goldbach partition has been found for any even interger n less than Given any even integer n greater than 2, write a program that prints the two primes of the Goldbach partition of n. If there are more than one Goldbach partitions of n, find a partition such that the difference of the two primes of it is minimized. Input Your program is to read from standard input. The input consists of T test cases. The number of test cases T is given in the first line of the input. Each test case consists of an even integer n ( 4 n 1,000 ). Output Your program is to write to standard output. For each test case, find the Goldbach partition as described above, and print its two primes in non-decreasing order with one blank between them. The following shows sample input and output for two test cases. Sample Input ICPC 2011 Problem E: Goldbach s Conjecture

10 Problem F Number Link Number Link is a type of logic puzzle involving finding paths to connect numbers in a grid. The player has to pair up all the matching numbers on the grid with continuous lines (or paths). The lines cannot branch off or cross over each other, and the numbers have to fall at the end of each line (i.e., not in the middle). Also the lines should pass by each cell in the grid exactly once. An example of Number Link with its solution is shown below. (a) Initial configuration (b) Solution Figure 1. An example of a Number Link Puzzle Here we concentrate on the case that a pair of only one numbers, say number 1, is located on the grid. Also for the given grid, and are both even. An example for this case is shown in the following Figure 2. Figure 2. An example in which a pair of number 1 s exists Given an grid where a pair of number 1 s is located, write a program to find a path which connects the number 1 s and passes by each cell exactly once. Input Your program is to read from standard input. The input consists of T test cases. The number of test cases T is given in the first line of the input. The first line of each test case contains two even integers and, the dimensions of the grid, where. Each of the second and third lines of each test case ICPC 2011 Problem F: Number Link

11 contains two integers and j, representing the location of one of the number 1 s in the grid. Here the location of the number 1 denotes the cell of the -th row and the -th column in the grid. Output Your program is to write to standard output. For each test case, if there is no path connecting the number 1 s, then print. Otherwise, print, and in the next lines, print the two integers and, representing the cell on the path. Here the end cells of the path are the locations of the number 1 s, that is, print the locations of the number 1 s in the first line and the last line, respectively. The following shows sample input and output for two test cases. Sample Input ICPC 2011 Problem F: Number Link

12 Problem G Stains Taeyeon has been using a rectangular carpet for a long time, thus the carpet has lots of indelible stains. Taeyeon decided to repair it by covering the stains with additional carpet patches. The shape of the patches is a diamond, which is a 45 - rotated axis-aligned square, as illustrated in Figure 1 below. The cost of a patch is proportional to its area. Taeyeon wants to minimize the total cost of the patches used to cover the stains, i.e., minimize the sum of area of the patches used. Moreover, Taeyeon is full of artistic sensitivity, so she wants some pattern of the patches. For this, she will align the centers of the patches on a line as illustrated in Figure 1. Patches can overlap each other. Figure 1. Stains are black dots and the centers of the patches are the crosses. The thick line is the x-axis. The figure above shows an example in which the nine stains can be covered by three patches with the minimum cost of. The stains are given with integer coordinates. You should find a set of diamond-shape patches such that (1) every stain must be contained in the interior or on the boundary of some patch, (2) the centers of the patches must be on -axis, and (3) the sum of area of the patches used must be minimized. You can assume that stains are all distinct and no stains lie on the -axis. Input Your program is to read from standard input. The input consists of T test cases. The number of test cases T is given in the first line of the input. Each test case starts with integer, the number of stains, where. Each of the following lines contains two integers, representing -coordinate and -coordinate of the stains between and, inclusive. Output Your program is to write to standard output. Print exactly one line for each test case. The line should contain a real value, the minimum area of the patches used to cover the stains; you output only 1 digit after decimal point, simply ignore the ones from the 2 nd digit after decimal point. ICPC 2011 Problem G: Stains

13 The following shows sample input and output for two test cases. Sample Input ICPC 2011 Problem G: Stains

14 Problem H 연습시즌 두프로야구팀 X 와 Y 가 7 군데의도시를정해진순서로방문하면서연습시즌을보낸다. 7 개의도시는 {, 로표시되어있다. 두팀 X 와 Y 가연습시즌을시작하는날과마치는날은반드시동일해야한다. 이연습시즌동안각팀은도시를방문해서연습훈련을하거나또는한호텔을정해서하루종일휴식 ( 휴식일 ) 을가진다. 각팀이방문해야하는도시들의순서는이미각각정해져있지만그중간에쉬는휴식일은따로정해져있지않다. 따라서방문해야할도시들의순서는바꿀수없지만그중간에휴식일은상황을봐가면서적절히선택할수있다. 예를들어연습시즌동안한팀이방문해야할도시의순서가 S=<,,,,,,, > 와같다면각팀은그중간에휴식일을넣을수있다. 예를들어아래두개의일정은 S 에중간중간휴식일이들어간상태의새로운일정의예 S1 과 S2 를보여주고있다. S1=<,, R,,, R, R,,,, R, > S2=<,,,, R,, R,,, > 연습시즌에는많은비용이든다. 한팀이야구장을사용할때내야하는경비는 7 개도시모두동일하게 C 원이다. 만일두팀 X 와 Y 가같은야구장을사용해도전체비용은 C 이므로각팀은각각 C/2 만큼의경비만을내면되기때문에약간이득이된다. 즉두팀이다른야구장에서따로훈련을하면각각 C 만큼의경비를내어전체비용은 2C 이지만같은야구장을쓰면각각 C/2 만내면되기때문에전체비용은 C 가된다. 그런데각팀이호텔에서휴식일로쉴때의경비계산은좀다르다. 연습시즌동안각팀은원기회복을위하여중간에휴식일을가질수있다. 이경우에는한호텔을모두빌어서전체가쉰다. 그런데호텔에서는야구팀이호텔전체를빌려서사용하기때문에일단호텔전체를빌릴경우독점사용비로 D 만큼요구한다. 그리고사용하는기간에따라서추가로하루당 d 만큼의비용을요구한다. 즉야구팀이어떤호텔에 w 일간연속해서머물경우 D+w d 만큼지불해야한다. 예를들어전체간 D=4, d=1 인경우에한팀이 5 일간연속해서호텔에머물경우전체비용은 4 + 1*5 = 9 만큼의비용을내야한다. 만일 5 일을각각따로따로떨어진날로하루씩머물경우에는모두 5 번의독점료를내야하고또한 5 일동안의사용료를내야하므로전체비용은 5*4+5*1=25 가된다. 두팀의도시방문순서가주어졌을때특별한변화없이각각그대로방문하는연습시즌일정을짜면아래표 - 1 과같아진다. 이경우 Y 팀은앞의가정대로연습시즌의처음과끝을 X 팀과맞추기위해서마지막이틀, 7 일과 8 일째날은휴식일로사용하고있다. X 표 -1. 간단한일정 -A Day1 Day 2 Day 3 Day 4 Day 5 Day 6 Day7 Day8 Y R R 만일야구장사용료가 C=3 이고, 호텔독점료 D=4, 일일사용료 d=1 일때, 위표 -1 에있는일정대로하면 X 와 Y 가지불해야하는전체비용은아래표 -2 와같다. ICPC 2011 Problem H: Training Season

15 표 2. 일정-A 에따라서연습시즌을지낼경우비용. Day Day1 Day2 Day3 Day4 Day5 Day6 Day7 Day8 X Y R R X 비용 Y 비용 합 따라서 X 와 Y 가지불해야하는전체비용은 6* = 48 이다. 일정 -A 와조금다른다른일정을잡아보자. 만일아래표 -3 과같이 Y 팀의일정에휴식일을적절히넣어서조정하면두팀이야구장을공동으로쓰는날이늘어나므로전체비용을줄일수있다. 표 3. 일정-B Day Day1 Day2 Day3 Day4 Day5 Day6 Day7 Day8 X Y R R X 비용 Y 비용 Total 따라서전체비용은 = 34 이되어일정 -A 에따른비용에비해서 = 14 만큼절약할수있다. 그러나최적의일정은 C, D 그리고 d 값에따라서다르게결정될수있음을유의해야한다. 여러분은 X 와 Y 팀의방문도시일정이주어졌을때두팀이지출해야하는비용의합을최소로가는가장좋은일정을구하고그전체비용을출력하는것이다. 아래입출력의예를잘살펴보면이문제를잘이해할수있을것이다. Input 입력은표준입력으로들어온다. 입력은모두 T 개의테스트케이스가있다. 테스트케이스의전체개수는첫줄에주어진다. 각테스트케이스는 3 개의줄로이루어져있다. 첫라인에는 C, D, d 를나타내는정수값이차례대로하나의공백을두고나타난다. 각숫자는모두 10 이하의양의정수이다. 그다음이어지는두개의줄에는방문해야할도시의순서가하나의공백을두고나타난다. 각도시는 1 부터 7 까지의정수로표시된다. 그리고그끝은숫자 0 으로표시되어있다. 방문해야할도시의개수 N 은 2 < N < 100 로제한되어있다. Output 여러분의프로그램은표준출력에써야한다. 각테스트케이스에해당되는정답, 즉연습시즌을마칠수있는최소의비용 (X 와 Y 비용의합 ) 을출력해야한다. 다음은다섯개의테스트데이터에대한입력과출력의예이다. Sample Input ICPC 2011 Problem H: Training Season

16 ICPC 2011 Problem H: Training Season

17 Problem I 두수의합 여러개의서로다른정수 S = {a 1, a 2,, a n } 와또다른정수 K 가주어졌을때, S 에속하는서로다른두개의정수의합이 K 에가장가까운두정수를구하시오. 예를들어, 10 개의정수 S = { -7, 9, 2, -4, 12, 1, 5, -3, -2, 0} 가주어졌을때, K = 8 에그합이가장가까운두정수는 {12, -4} 이다. 또한 K = 4 에그합이가장가까운두정수는 {-7, 12}, {9, -4}, {5, -2}, {5, 0}, {1, 2} 등의다섯종류가있다. 여러개의서로다른정수가주어졌을때, 주어진정수들중에서서로다른두정수의합이주어진또다른정수에가장가까운두정수의조합의수를계산하는프로그램을작성하시오. 입력프로그램은표준입력으로입력을받는다. 프로그램입력은 t 개의테스트케이스로구성된다. 입력의첫번째줄에테스트케이스의개수를나타내는정수 t 가주어진다. 두번째줄부터두줄에한개의테스트케이스에해당하는데이터가주어진다. 각테스트케이스의첫번째줄에는두개의정수 n 과 K (2 n 1,000,000, K 10 8 ) 가한개의공백을사이에두고입력된다. 두번째줄에는 n 개의정수가하나의공백을사이에두고주어지며, 각정수의최대값은 10 8 이고, 최소값은 이다. 잘못된데이터가입력되는경우는없다. 출력출력은표준출력 (standard output) 을사용한다. 입력되는테스트케이스의순서대로다음줄에이어서각테스트케이스의결과를출력한다. 각테스트케이스의출력되는첫줄에입력으로주어진 n 개의정수들중에서서로다른두정수의합이주어진또다른정수 K 에가장가까운두정수의조합의수를출력한다. 다음은네개의테스트데이터에대한입력과출력의예이다. Sample Input ICPC 2011 Problem I: 두수의합

18 Problem J Widest Path We are given a graph which represents connections between nodes in the computer network, and the weight of an edge represents the bandwidth of a connection between two nodes. For the efficient data transmission between two nodes in the network, we are interested in finding a path between two nodes that has wide bandwidth. The bandwidth of a path is the minimum weight of an edge in the path. The widest path problem is to find the path between two nodes that has the maximum possible bandwidth. For example, the widest path from node 1 to node 4 in Figure 1 has bandwidth 25, and passes through node 3 and node 2. The widest path from node 6 to node 3 has bandwidth 30, and passes through node 5. Figure 1. Example of a computer network Given two nodes in a graph, write a program which determines the bandwidth of the widest path between two nodes. Input Your program is to read from standard input. The input consists of T test cases. The number of test cases T is given in the first line of the input. Each test case starts with a line containing four integers n, m, s and t for a connected graph, where n represents the number of nodes and m ( ) represents the number of edges, s and t represents the two nodes(nodes are numbered from 1 to n). In the following m lines, the bandwidth of the edges are given; each line contains three integers, u, v, and b, where b ( ) is the bandwidth of a connection between two nodes u and v. Output Your program is to write to standard output. Print exactly one line for each test case. The line should contain the bandwidth of the widest path between two nodes s and t. The following shows sample input and output for two test cases. ICPC 2011 Problem J: Widest Path

19 Sample Input ICPC 2011 Problem J: Widest Path

sna-node-ties

sna-node-ties Node Centrality in Social Networks Nov. 2015 Youn-Hee Han http://link.koreatech.ac.kr Importance of Nodes ² Question: which nodes are important among a large number of connected nodes? Centrality analysis

More information

Microsoft PowerPoint - ch03ysk2012.ppt [호환 모드]

Microsoft PowerPoint - ch03ysk2012.ppt [호환 모드] 전자회로 Ch3 iode Models and Circuits 김영석 충북대학교전자정보대학 2012.3.1 Email: kimys@cbu.ac.kr k Ch3-1 Ch3 iode Models and Circuits 3.1 Ideal iode 3.2 PN Junction as a iode 3.4 Large Signal and Small-Signal Operation

More information

Page 2 of 5 아니다 means to not be, and is therefore the opposite of 이다. While English simply turns words like to be or to exist negative by adding not,

Page 2 of 5 아니다 means to not be, and is therefore the opposite of 이다. While English simply turns words like to be or to exist negative by adding not, Page 1 of 5 Learn Korean Ep. 4: To be and To exist Of course to be and to exist are different verbs, but they re often confused by beginning students when learning Korean. In English we sometimes use the

More information

- i - - ii - - iii - - iv - - v - - vi - - 1 - - 2 - - 3 - 1) 통계청고시제 2010-150 호 (2010.7.6 개정, 2011.1.1 시행 ) - 4 - 요양급여의적용기준및방법에관한세부사항에따른골밀도검사기준 (2007 년 11 월 1 일시행 ) - 5 - - 6 - - 7 - - 8 - - 9 - - 10 -

More information

슬라이드 제목 없음

슬라이드 제목 없음 2006-09-27 경북대학교컴퓨터공학과 1 제 5 장서브넷팅과슈퍼넷팅 서브넷팅 (subnetting) 슈퍼넷팅 (Supernetting) 2006-09-27 경북대학교컴퓨터공학과 2 서브넷팅과슈퍼넷팅 서브넷팅 (subnetting) 하나의네트워크를여러개의서브넷 (subnet) 으로분할 슈퍼넷팅 (supernetting) 여러개의서브넷주소를결합 The idea

More information

Microsoft PowerPoint - 26.pptx

Microsoft PowerPoint - 26.pptx 이산수학 () 관계와그특성 (Relations and Its Properties) 2011년봄학기 강원대학교컴퓨터과학전공문양세 Binary Relations ( 이진관계 ) Let A, B be any two sets. A binary relation R from A to B, written R:A B, is a subset of A B. (A 에서 B 로의이진관계

More information

untitled

untitled Logic and Computer Design Fundamentals Chapter 4 Combinational Functions and Circuits Functions of a single variable Can be used on inputs to functional blocks to implement other than block s intended

More information

비트와바이트 비트와바이트 비트 (Bit) : 2진수값하나 (0 또는 1) 를저장할수있는최소메모리공간 1비트 2비트 3비트... n비트 2^1 = 2개 2^2 = 4개 2^3 = 8개... 2^n 개 1 바이트는 8 비트 2 2

비트와바이트 비트와바이트 비트 (Bit) : 2진수값하나 (0 또는 1) 를저장할수있는최소메모리공간 1비트 2비트 3비트... n비트 2^1 = 2개 2^2 = 4개 2^3 = 8개... 2^n 개 1 바이트는 8 비트 2 2 비트연산자 1 1 비트와바이트 비트와바이트 비트 (Bit) : 2진수값하나 (0 또는 1) 를저장할수있는최소메모리공간 1비트 2비트 3비트... n비트 2^1 = 2개 2^2 = 4개 2^3 = 8개... 2^n 개 1 바이트는 8 비트 2 2 진수법! 2, 10, 16, 8! 2 : 0~1 ( )! 10 : 0~9 ( )! 16 : 0~9, 9 a, b,

More information

ePapyrus PDF Document

ePapyrus PDF Document 육아지원연구 2008. 제 3권 1 호, 147-170 어린이집에서의 낮잠에 대한 교사와 부모의 인식 및 실제 이 슬 기(동작구 보육정보센터)* 1) 요 약 본 연구의 목적은 어린이집에서의 일과 중 낮잠 시간에 대한 교사와 부모의 인식 및 실제를 알아봄 으로써, 교사와 부모의 협력을 통해 바람직한 낮잠 시간을 모색해 보는 데 있었다. 연구 대상은 서울, 경기지역

More information

step 1-1

step 1-1 Written by Dr. In Ku Kim-Marshall STEP BY STEP Korean 1 through 15 Action Verbs Table of Contents Unit 1 The Korean Alphabet, hangeul Unit 2 Korean Sentences with 15 Action Verbs Introduction Review Exercises

More information

` Companies need to play various roles as the network of supply chain gradually expands. Companies are required to form a supply chain with outsourcing or partnerships since a company can not

More information

- 2 -

- 2 - - 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 -

More information

歯kjmh2004v13n1.PDF

歯kjmh2004v13n1.PDF 13 1 ( 24 ) 2004 6 Korean J Med Hist 13 1 19 Jun 2004 ISSN 1225 505X 1) * * 1 ( ) 2) 3) 4) * 1) ( ) 3 2) 7 1 3) 2 1 13 1 ( 24 ) 2004 6 5) ( ) ( ) 2 1 ( ) 2 3 2 4) ( ) 6 7 5) - 2003 23 144-166 2 2 1) 6)

More information

<B3EDB9AEC1FD5F3235C1FD2E687770>

<B3EDB9AEC1FD5F3235C1FD2E687770> 오용록의 작품세계 윤 혜 진 1) * 이 논문은 생전( 生 前 )에 학자로 주로 활동하였던 오용록(1955~2012)이 작곡한 작품들을 살펴보고 그의 작품세계를 파악하고자 하는 것이다. 한국음악이론이 원 래 작곡과 이론을 포함하였던 초기 작곡이론전공의 형태를 염두에 둔다면 그의 연 구에서 기존연구의 방법론을 넘어서 창의적인 분석 개념과 체계를 적용하려는

More information

Page 2 of 6 Here are the rules for conjugating Whether (or not) and If when using a Descriptive Verb. The only difference here from Action Verbs is wh

Page 2 of 6 Here are the rules for conjugating Whether (or not) and If when using a Descriptive Verb. The only difference here from Action Verbs is wh Page 1 of 6 Learn Korean Ep. 13: Whether (or not) and If Let s go over how to say Whether and If. An example in English would be I don t know whether he ll be there, or I don t know if he ll be there.

More information

Output file

Output file 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 An Application for Calculation and Visualization of Narrative Relevance of Films Using Keyword Tags Choi Jin-Won (KAIST) Film making

More information

Microsoft PowerPoint Relations.pptx

Microsoft PowerPoint Relations.pptx 이산수학 () 관계와그특성 (Relations and Its Properties) 2010년봄학기강원대학교컴퓨터과학전공문양세 Binary Relations ( 이진관계 ) Let A, B be any two sets. A binary relation R from A to B, written R:A B, is a subset of A B. (A 에서 B 로의이진관계

More information

Microsoft PowerPoint - 27.pptx

Microsoft PowerPoint - 27.pptx 이산수학 () n-항관계 (n-ary Relations) 2011년봄학기 강원대학교컴퓨터과학전공문양세 n-ary Relations (n-항관계 ) An n-ary relation R on sets A 1,,A n, written R:A 1,,A n, is a subset R A 1 A n. (A 1,,A n 에대한 n- 항관계 R 은 A 1 A n 의부분집합이다.)

More information

IKC43_06.hwp

IKC43_06.hwp 2), * 2004 BK21. ** 156,..,. 1) (1909) 57, (1915) 106, ( ) (1931) 213. 1983 2), 1996. 3). 4) 1),. (,,, 1983, 7 12 ). 2),. 3),, 33,, 1999, 185 224. 4), (,, 187 188 ). 157 5) ( ) 59 2 3., 1990. 6) 7),.,.

More information

한국성인에서초기황반변성질환과 연관된위험요인연구

한국성인에서초기황반변성질환과 연관된위험요인연구 한국성인에서초기황반변성질환과 연관된위험요인연구 한국성인에서초기황반변성질환과 연관된위험요인연구 - - i - - i - - ii - - iii - - iv - χ - v - - vi - - 1 - - 2 - - 3 - - 4 - 그림 1. 연구대상자선정도표 - 5 - - 6 - - 7 - - 8 - 그림 2. 연구의틀 χ - 9 - - 10 - - 11 -

More information

public key private key Encryption Algorithm Decryption Algorithm 1

public key private key Encryption Algorithm Decryption Algorithm 1 public key private key Encryption Algorithm Decryption Algorithm 1 One-Way Function ( ) A function which is easy to compute in one direction, but difficult to invert - given x, y = f(x) is easy - given

More information

°í¼®ÁÖ Ãâ·Â

°í¼®ÁÖ Ãâ·Â Performance Optimization of SCTP in Wireless Internet Environments The existing works on Stream Control Transmission Protocol (SCTP) was focused on the fixed network environment. However, the number of

More information

<303220C7D1C5C2B9AE2E687770>

<303220C7D1C5C2B9AE2E687770> 한국민족문화 47, 2013. 5, 63~91쪽 통신사 사행록에 반영된 히로시마( 廣 島 )* 1)한 태 문** 1. 머리말 2. 통신사행에 있어서 히로시마의 역할 1) 사행의 水 路 노정 경유지 2) 정성을 다한 接 待 와 支 供 3. 사행록에 들어앉은 히로시마의 모습 1) 仙 境 으로 여겨진 빼어난 경치 2) 독특한 생활방식과 특산물로 이름난 공간 3)

More information

Let G = (V, E) be a connected, undirected graph with a real-valued weight function w defined on E. Let A be a set of E, possibly empty, that is includ

Let G = (V, E) be a connected, undirected graph with a real-valued weight function w defined on E. Let A be a set of E, possibly empty, that is includ 알고리즘설계와분석 (CSE3081(2 반 )) 기말고사 (2016년 12월15일 ( 목 ) 오전 9시40분 ~) 담당교수 : 서강대학교컴퓨터공학과임인성 < 주의 > 답안지에답을쓴후제출할것. 만약공간이부족하면답안지의뒷면을이용하고, 반드시답을쓰는칸에어느쪽의뒷면에답을기술하였는지명시할것. 연습지는수거하지않음. function MakeSet(x) { x.parent

More information

6자료집최종(6.8))

6자료집최종(6.8)) Chapter 1 05 Chapter 2 51 Chapter 3 99 Chapter 4 151 Chapter 1 Chapter 6 7 Chapter 8 9 Chapter 10 11 Chapter 12 13 Chapter 14 15 Chapter 16 17 Chapter 18 Chapter 19 Chapter 20 21 Chapter 22 23 Chapter

More information

04-다시_고속철도61~80p

04-다시_고속철도61~80p Approach for Value Improvement to Increase High-speed Railway Speed An effective way to develop a highly competitive system is to create a new market place that can create new values. Creating tools and

More information

Microsoft PowerPoint - 06-IPAddress [호환 모드]

Microsoft PowerPoint - 06-IPAddress [호환 모드] Chapter 06 IP Address IP Address Internet address IP 계층에서사용되는식별자 32 bit 2 진주소 The address space of IPv4 is 2 32 or 4,294,967,296 netid 와 hostid 로구분 인터넷에서호스트와라우터를유일하게구분 IP Address Structure 2-Layer Hierarchical

More information

#Ȳ¿ë¼®

#Ȳ¿ë¼® http://www.kbc.go.kr/ A B yk u δ = 2u k 1 = yk u = 0. 659 2nu k = 1 k k 1 n yk k Abstract Web Repertoire and Concentration Rate : Analysing Web Traffic Data Yong - Suk Hwang (Research

More information

퇴좈저널36호-4차-T.ps, page 2 @ Preflight (2)

퇴좈저널36호-4차-T.ps, page 2 @ Preflight (2) Think Big, Act Big! Character People Literature Beautiful Life History Carcere Mamertino World Special Interview Special Writing Math English Quarts I have been driven many times to my knees by the overwhelming

More information

장양수

장양수 한국문학논총 제70집(2015. 8) 333~360쪽 공선옥 소설 속 장소 의 의미 - 명랑한 밤길, 영란, 꽃같은 시절 을 중심으로 * 1)이 희 원 ** 1. 들어가며 - 장소의 인간 차 2. 주거지와 소유지 사이의 집/사람 3. 취약함의 나눔으로서의 장소 증여 례 4. 장소 소속감과 미의식의 가능성 5.

More information

본문01

본문01 Ⅱ 논술 지도의 방법과 실제 2. 읽기에서 논술까지 의 개발 배경 읽기에서 논술까지 자료집 개발의 본래 목적은 초 중 고교 학교 평가에서 서술형 평가 비중이 2005 학년도 30%, 2006학년도 40%, 2007학년도 50%로 확대 되고, 2008학년도부터 대학 입시에서 논술 비중이 커지면서 논술 교육은 학교가 책임진다. 는 풍토 조성으로 공교육의 신뢰성과

More information

04 형사판례연구 19-3-1.hwp

04 형사판례연구 19-3-1.hwp 2010년도 형법판례 회고 645 2010년도 형법판례 회고 2)오 영 근* Ⅰ. 서설 2010. 1. 1.에서 2010. 12. 31.까지 대법원 법률종합정보 사이트 1) 에 게재된 형법 및 형사소송법 판례는 모두 286건이다. 이 중에는 2건의 전원합의체 판결 및 2건의 전원합의체 결정이 있다. 2건의 전원합의체 결정은 형사소송법에 관한 것이고, 2건의

More information

<B3EDB9AEC1FD5F3235C1FD2E687770>

<B3EDB9AEC1FD5F3235C1FD2E687770> 경상북도 자연태음악의 소박집합, 장단유형, 전단후장 경상북도 자연태음악의 소박집합, 장단유형, 전단후장 - 전통 동요 및 부녀요를 중심으로 - 이 보 형 1) * 한국의 자연태 음악 특성 가운데 보편적인 특성은 대충 밝혀졌지만 소박집합에 의한 장단주기 박자유형, 장단유형, 같은 층위 전후 구성성분의 시가( 時 價 )형태 등 은 밝혀지지 않았으므로

More information

<303220BAAFB1A4BCAE2E687770>

<303220BAAFB1A4BCAE2E687770> 한국민족문화 33, 2009. 3, 39~73쪽 임진왜란 직후 기장지역의 상황과 被 虜 人 沙 器 匠 1)변 광 석* 1. 머리말 2. 16세기 전후 기장현의 상황 3. 기장의 陶 瓷 와 沙 器 匠 4. 被 虜 人 사기장과 기장지역 1) 경상도 일원 주민의 납치 2) 주요 피로인 사기장들의 출신지역 문제 3) 回 答 兼 刷 還 使 의 피로인 송환시도와 현지의

More information

300 구보학보 12집. 1),,.,,, TV,,.,,,,,,..,...,....,... (recall). 2) 1) 양웅, 김충현, 김태원, 광고표현 수사법에 따른 이해와 선호 효과: 브랜드 인지도와 의미고정의 영향을 중심으로, 광고학연구 18권 2호, 2007 여름

300 구보학보 12집. 1),,.,,, TV,,.,,,,,,..,...,....,... (recall). 2) 1) 양웅, 김충현, 김태원, 광고표현 수사법에 따른 이해와 선호 효과: 브랜드 인지도와 의미고정의 영향을 중심으로, 광고학연구 18권 2호, 2007 여름 동화 텍스트를 활용한 패러디 광고 스토리텔링 연구 55) 주 지 영* 차례 1. 서론 2. 인물의 성격 변화에 의한 의미화 전략 3. 시공간 변화에 의한 의미화 전략 4. 서사의 변개에 의한 의미화 전략 5. 창조적인 스토리텔링을 위하여 6. 결론 1. 서론...., * 서울여자대학교 초빙강의교수 300 구보학보 12집. 1),,.,,, TV,,.,,,,,,..,...,....,...

More information

<BABBB9AE2E687770>

<BABBB9AE2E687770> 253 단소산조 퉁소산조 피리산조 형성시기 재검토 49) 이진원* Ⅰ. 머리말 Ⅱ. 기존 연구성과 검토 Ⅲ. 단소산조 퉁소산조 피리산조 형성시기 검토 Ⅳ. 단소산조 퉁소산조 피리산조 형성시기 재검토의 의의 Ⅴ. 맺음말 Ⅰ. 머릿말 우리나라의 대표적인 종취관악기(縱吹管樂器)에는 무황악기(無簧樂器)인 퉁소 단소가 있 고, 유황악기(有簧樂器)로 피리와 쇄납 등이

More information

현대영화연구

현대영화연구 와 에 나타난 섬과 소통의 의미 * 1) 곽수경 국립목포대학교 도서문화연구원 HK연구교수 1. 영화와 섬 2. 물리적인 섬과 상징된 섬 3. 소통수단 4. 결론 목 차 국문초록 최근에는 섬이 해양영토로 인식되고 다양한 방송프로그램을 통해 자주 소 개되면서 다각도로 섬에 대한 관심이 높아지고 있다. 하지만 그에 비해 섬을 배경으로 한 영화는

More information

서강대학교공과대학컴퓨터공학과 (1/5) CSE3081 (2 반 ): 알고리즘설계와분석 < 프로그래밍숙제 2> (v_1.0) 담당교수 : 임인성 2015 년 10 월 13 일 마감 : 10 월 31 일토요일오후 8 시정각 제출물, 제출방법, LATE 처리방법등 : 조교가

서강대학교공과대학컴퓨터공학과 (1/5) CSE3081 (2 반 ): 알고리즘설계와분석 < 프로그래밍숙제 2> (v_1.0) 담당교수 : 임인성 2015 년 10 월 13 일 마감 : 10 월 31 일토요일오후 8 시정각 제출물, 제출방법, LATE 처리방법등 : 조교가 서강대학교공과대학컴퓨터공학과 (/5) CSE08 ( 반 ): 알고리즘설계와분석 < 프로그래밍숙제 > (v_.0) 담당교수 : 임인성 05 년 0 월 일 마감 : 0 월 일토요일오후 8 시정각 제출물, 제출방법, LATE 처리방법등 : 조교가과목게시판에공고할예정임. 목표 : 주어진문제에대한분석을통하여 optimal substructure 를유추하고, 이를 bottom-up

More information

Á¶´öÈñ_0304_final.hwp

Á¶´öÈñ_0304_final.hwp 제조 중소기업의 고용창출 성과 및 과제 조덕희 양현봉 우리 경제에서 일자리 창출은 가장 중요한 정책과제입니다. 근래 들어 우리 사회에서 점차 심각성을 더해 가고 있는 청년 실업 문제에 대처하고, 사회적 소득 양극화 문제에 대응하기 위해서도 일자리 창 출은 무엇보다도 중요한 정책과제일 것입니다. 고용창출에서는 중소기업의 역할이 대기업보다 크다는 것이 일반적

More information

저작자표시 - 비영리 - 변경금지 2.0 대한민국 이용자는아래의조건을따르는경우에한하여자유롭게 이저작물을복제, 배포, 전송, 전시, 공연및방송할수있습니다. 다음과같은조건을따라야합니다 : 저작자표시. 귀하는원저작자를표시하여야합니다. 비영리. 귀하는이저작물을영리목적으로이용할

저작자표시 - 비영리 - 변경금지 2.0 대한민국 이용자는아래의조건을따르는경우에한하여자유롭게 이저작물을복제, 배포, 전송, 전시, 공연및방송할수있습니다. 다음과같은조건을따라야합니다 : 저작자표시. 귀하는원저작자를표시하여야합니다. 비영리. 귀하는이저작물을영리목적으로이용할 저작자표시 - 비영리 - 변경금지 2.0 대한민국 이용자는아래의조건을따르는경우에한하여자유롭게 이저작물을복제, 배포, 전송, 전시, 공연및방송할수있습니다. 다음과같은조건을따라야합니다 : 저작자표시. 귀하는원저작자를표시하여야합니다. 비영리. 귀하는이저작물을영리목적으로이용할수없습니다. 변경금지. 귀하는이저작물을개작, 변형또는가공할수없습니다. 귀하는, 이저작물의재이용이나배포의경우,

More information

2011´ëÇпø2µµ 24p_0628

2011´ëÇпø2µµ 24p_0628 2011 Guide for U.S. Graduate School Admissions Table of Contents 02 03 04 05 06 08 09 10 11 13 15 21 LEADERS UHAK INTERNATIONAL STUDENTS SERVICE www.leadersuhak.com Leaders Uhak International Students

More information

0125_ 워크샵 발표자료_완성.key

0125_ 워크샵 발표자료_완성.key WordPress is a free and open-source content management system (CMS) based on PHP and MySQL. WordPress is installed on a web server, which either is part of an Internet hosting service or is a network host

More information

Chap 6: Graphs

Chap 6: Graphs 그래프표현법 인접행렬 (Adjacency Matrix) 인접리스트 (Adjacency List) 인접다중리스트 (Adjacency Multilist) 6 장. 그래프 (Page ) 인접행렬 (Adjacency Matrix) n 개의 vertex 를갖는그래프 G 의인접행렬의구성 A[n][n] (u, v) E(G) 이면, A[u][v] = Otherwise, A[u][v]

More information

<B9AEC8ADC4DCC5D9C3F7BFACB1B82D35C8A32833B1B3292E687770>

<B9AEC8ADC4DCC5D9C3F7BFACB1B82D35C8A32833B1B3292E687770> 독서문화 생태계 조성의 주요 거점으로서, 지역 서점 활성화 방안 연구 - 국내 국외 성공 사례에 기초하여 오선경 * 국문초록 매체 환경이 디지털로 전환해가면서 종이책 독서인구도 감소하고 있다. 더불 어 오픈 마켓이나 대형 서점, 온라인 서점 등의 공격적 마케팅은 보다 편리하고, 보다 빨리, 보다 싸게 라는 책 소비 패턴에 변화를 가져왔다. 이는 곧 규모나 자본

More information

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서 PowerChute Personal Edition v3.1.0 990-3772D-019 4/2019 Schneider Electric IT Corporation Schneider Electric IT Corporation.. Schneider Electric IT Corporation,,,.,. Schneider Electric IT Corporation..

More information

Chap 6: Graphs

Chap 6: Graphs 5. 작업네트워크 (Activity Networks) 작업 (Activity) 부분프로젝트 (divide and conquer) 각각의작업들이완료되어야전체프로젝트가성공적으로완료 두가지종류의네트워크 Activity on Vertex (AOV) Networks Activity on Edge (AOE) Networks 6 장. 그래프 (Page 1) 5.1 AOV

More information

4 5 4. Hi-MO 애프터케어 시스템 편 5. 오비맥주 카스 카스 후레쉬 테이블 맥주는 천연식품이다 편 처음 스타일 그대로, 부탁 케어~ Hi-MO 애프터케어 시스템 지속적인 모발 관리로 끝까지 스타일이 유지되도록 독보적이다! 근데 그거 아세요? 맥주도 인공첨가물이

4 5 4. Hi-MO 애프터케어 시스템 편 5. 오비맥주 카스 카스 후레쉬 테이블 맥주는 천연식품이다 편 처음 스타일 그대로, 부탁 케어~ Hi-MO 애프터케어 시스템 지속적인 모발 관리로 끝까지 스타일이 유지되도록 독보적이다! 근데 그거 아세요? 맥주도 인공첨가물이 1 2 On-air 3 1. 이베이코리아 G마켓 용평리조트 슈퍼브랜드딜 편 2. 아모레퍼시픽 헤라 루즈 홀릭 리퀴드 편 인쇄 광고 올해도 겨울이 왔어요. 당신에게 꼭 해주고 싶은 말이 있어요. G마켓에선 용평리조트 스페셜 패키지가 2만 6900원! 역시 G마켓이죠? G마켓과 함께하는 용평리조트 스페셜 패키지. G마켓의 슈퍼브랜드딜은 계속된다. 모바일 쇼핑 히어로

More information

49-9분동안 표지 3.3

49-9분동안 표지 3.3 In the ocean, humans create many noises. These noises disturb the waters. People do not know that manmade sound harms the creatures living in the sea. In the end, disturbing the ocean affects each one

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA 김진주 김수연. 초등학생대상장애이해교육에활용된동화에나타난장애인관분석. 특수교육, 2013, 제12권, 제2호, 135-160... 20.,,. 4.,,.,..... 주제어 : 장애이해교육, 동화, 장애인관 1. ( 1 ) Incheon Munhak Elementary School ( )(, E-mail: sooyoun@ginue.ac.kr) Dept. of

More information

274 한국문화 73

274 한국문화 73 - 273 - 274 한국문화 73 17~18 세기통제영의방어체제와병력운영 275 276 한국문화 73 17~18 세기통제영의방어체제와병력운영 277 278 한국문화 73 17~18 세기통제영의방어체제와병력운영 279 280 한국문화 73 17~18 세기통제영의방어체제와병력운영 281 282 한국문화 73 17~18 세기통제영의방어체제와병력운영 283 284

More information

<3130C0E5>

<3130C0E5> Redundancy Adding extra bits for detecting or correcting errors at the destination Types of Errors Single-Bit Error Only one bit of a given data unit is changed Burst Error Two or more bits in the data

More information

Microsoft PowerPoint - AC3.pptx

Microsoft PowerPoint - AC3.pptx Chapter 3 Block Diagrams and Signal Flow Graphs Automatic Control Systems, 9th Edition Farid Golnaraghi, Simon Fraser University Benjamin C. Kuo, University of Illinois 1 Introduction In this chapter,

More information

- iii - - i - - ii - - iii - 국문요약 종합병원남자간호사가지각하는조직공정성 사회정체성과 조직시민행동과의관계 - iv - - v - - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 - - 14 - α α α α - 15 - α α α α α α

More information

슬라이드 제목 없음

슬라이드 제목 없음 물리화학 1 문제풀이 130403 김대형교수님 Chapter 1 Exercise (#1) A sample of 255 mg of neon occupies 3.00 dm 3 at 122K. Use the perfect gas law to calculate the pressure of the gas. Solution 1) The perfect gas law p

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA The e-business Studies Volume 17, Number 4, August, 30, 2016:319~332 Received: 2016/07/28, Accepted: 2016/08/28 Revised: 2016/08/27, Published: 2016/08/30 [ABSTRACT] This paper examined what determina

More information

........pdf 16..

........pdf 16.. Abstract Prospects of and Tasks Involving the Policy of Revitalization of Traditional Korean Performing Arts Yong-Shik, Lee National Center for Korean Traditional Performing Arts In the 21st century, the

More information

<B1E2C8B9BEC828BFCFBCBAC1F7C0FC29322E687770>

<B1E2C8B9BEC828BFCFBCBAC1F7C0FC29322E687770> 맛있는 한국으로의 초대 - 중화권 음식에서 한국 음식의 관광 상품화 모색하기 - 소속학교 : 한국외국어대학교 지도교수 : 오승렬 교수님 ( 중국어과) 팀 이 름 : 飮 食 男 女 ( 음식남녀) 팀 원 : 이승덕 ( 중국어과 4) 정진우 ( 중국어과 4) 조정훈 ( 중국어과 4) 이민정 ( 중국어과 3) 탐방목적 1. 한국 음식이 가지고 있는 장점과 경제적 가치에도

More information

아니라 일본 지리지, 수로지 5, 지도 6 등을 함께 검토해야 하지만 여기서는 근대기 일본이 편찬한 조선 지리지와 부속지도만으로 연구대상을 한정하 기로 한다. Ⅱ. 1876~1905년 울릉도 독도 서술의 추이 1. 울릉도 독도 호칭의 혼란과 지도상의 불일치 일본이 조선

아니라 일본 지리지, 수로지 5, 지도 6 등을 함께 검토해야 하지만 여기서는 근대기 일본이 편찬한 조선 지리지와 부속지도만으로 연구대상을 한정하 기로 한다. Ⅱ. 1876~1905년 울릉도 독도 서술의 추이 1. 울릉도 독도 호칭의 혼란과 지도상의 불일치 일본이 조선 근대기 조선 지리지에 보이는 일본의 울릉도 독도 인식 호칭의 혼란을 중심으로 Ⅰ. 머리말 이 글은 근대기 일본인 편찬 조선 지리지에 나타난 울릉도 독도 관련 인식을 호칭의 변화에 초점을 맞춰 고찰한 것이다. 일본은 메이지유신 이후 부국강병을 기도하는 과정에서 수집된 정보에 의존하여 지리지를 펴냈고, 이를 제국주의 확장에 원용하였다. 특히 일본이 제국주의 확장을

More information

서론 34 2

서론 34 2 34 2 Journal of the Korean Society of Health Information and Health Statistics Volume 34, Number 2, 2009, pp. 165 176 165 진은희 A Study on Health related Action Rates of Dietary Guidelines and Pattern of

More information

03¹ü¼±±Ô

03¹ü¼±±Ô Relevancy between Aliases of Eight Provinces and Topographical Features during the Chosun Dynasty Seon-Gyu Beom* Abstract : In Korea, aside from their official administrative names, aliases of each province

More information

<BFACBCBCC0C7BBE7C7D02831302031203139292E687770>

<BFACBCBCC0C7BBE7C7D02831302031203139292E687770> 延 世 醫 史 學 제12권 제2호: 29-40, 2009년 12월 Yonsei J Med Hist 12(2): 29-40, 2009 특집논문 3 한국사회의 낙태에 대한 인식변화 이 현 숙 이화여대 한국문화연구원 1. 들어가며 1998년 내가 나이 마흔에 예기치 않은 임신을 하게 되었을 때, 내 주변 사람들은 모두 들 너무나도 쉽게 나에게 임신중절을 권하였다.

More information

<303720C7CFC1A4BCF86F6B2E687770>

<303720C7CFC1A4BCF86F6B2E687770> 1) < 論 文 > 라이프스타일 세분화를 통한 실버타운 수요자 분석 133 주택연구 제15권 4호 2007. 12/15(4) : 133~160 Housing Studies Review Vol. 15, No. 4 : 133~160 접수일 : 2007. 7. 9, 심사일 : 2007. 7. 16, 심사완료일 : 2007. 8. 29 라이프스타일 세분화를 통한 실버타운

More information

975_983 특집-한규철, 정원호

975_983 특집-한규철, 정원호 Focused Issue of This Month Gyu Cheol an, MD Department of Otolaryngology ead & Neck Surgery, Gachon University of College Medicine E - mail : han@gilhospital.com Won-o Jung, MD Department of Otolaryngology

More information

17-221~235설계01철도사장교1.ps

17-221~235설계01철도사장교1.ps 17-221~235설계01철도사장교1.ps 2012.12.26 19:59 페이지221 VOL.19 설계사례 222 김종학, 이경훈, 손준상, 송혜금 236 미호천 1교의 계획 및 설계 김재기, 이경훈, 김기혁, 곽태영 248 하나대교(가칭)의 계획 및 설계 이명재, 이경훈, 박 철, 박흥희, 조재원, 이대규 274 국도18호선 진도대교 성능개선공사 실시설계용역

More information

지능정보연구제 16 권제 1 호 2010 년 3 월 (pp.71~92),.,.,., Support Vector Machines,,., KOSPI200.,. * 지능정보연구제 16 권제 1 호 2010 년 3 월

지능정보연구제 16 권제 1 호 2010 년 3 월 (pp.71~92),.,.,., Support Vector Machines,,., KOSPI200.,. * 지능정보연구제 16 권제 1 호 2010 년 3 월 지능정보연구제 16 권제 1 호 2010 년 3 월 (pp.71~92),.,.,., Support Vector Machines,,., 2004 5 2009 12 KOSPI200.,. * 2009. 지능정보연구제 16 권제 1 호 2010 년 3 월 김선웅 안현철 社 1), 28 1, 2009, 4. 1. 지능정보연구제 16 권제 1 호 2010 년 3 월 Support

More information

<31325F3134335FB1E8B9CCC1A42CBFF8C0B1B0E62CB1E8B9CCC7F62E687770>

<31325F3134335FB1E8B9CCC1A42CBFF8C0B1B0E62CB1E8B9CCC7F62E687770> 143 패션쇼에 나타난 퓨처리즘 메이크업의 특징에 관한 고찰 (2000 년대 초반을 중심으로 ) 김 미 정 / 원 윤 경 / 김 미 현 한성대학교 예술대학원 / 충청대학 피부미용학부 / 동명대학교 뷰티디자인학과 Abstract The Characters of Futurism Make up by Observation of 21's Century Fashion

More information

기관고유연구사업결과보고

기관고유연구사업결과보고 기관고유연구사업결과보고 작성요령 2001 ~ 2004 2005 ~ 2007 2008 ~ 2010 2001 ~ 2004 2005 ~ 2007 2008 ~ 2010 1 2/3 2 1 0 2 3 52 0 31 83 12 6 3 21 593 404 304 1,301 4 3 1 8 159 191 116 466 6 11 (`1: (1: 16 33 44 106

More information

¹Ìµå¹Ì3Â÷Àμâ

¹Ìµå¹Ì3Â÷Àμâ MIDME LOGISTICS Trusted Solutions for 02 CEO MESSAGE MIDME LOGISTICS CO., LTD. 01 Ceo Message We, MIDME LOGISTICS CO., LTD. has established to create aduance logistics service. Try to give confidence to

More information

- 이 문서는 삼성전자의 기술 자산으로 승인자만이 사용할 수 있습니다 Part Picture Description 5. R emove the memory by pushing the fixed-tap out and Remove the WLAN Antenna. 6. INS

- 이 문서는 삼성전자의 기술 자산으로 승인자만이 사용할 수 있습니다 Part Picture Description 5. R emove the memory by pushing the fixed-tap out and Remove the WLAN Antenna. 6. INS [Caution] Attention to red sentence 3-1. Disassembly and Reassembly R520/ 1 2 1 1. As shown in picture, adhere Knob to the end closely into the arrow direction(1), then push the battery up (2). 2. Picture

More information

Problem A Black Chain Time Limit: 0.1 Second There is a linear chain of n black rings. The weight of every black ring is exactly 1g. We want to genera

Problem A Black Chain Time Limit: 0.1 Second There is a linear chain of n black rings. The weight of every black ring is exactly 1g. We want to genera Problem Set Please check that you have 12 problems that are spanned across 32 pages in total (including this cover page). A. Black Chain (2 pages) Korean translation available B. Farm (1 page) Korean translation

More information

Line (A) å j a k= i k #define max(a, b) (((a) >= (b))? (a) : (b)) long MaxSubseqSum0(int A[], unsigned Left, unsigned Right) { int Center, i; long Max

Line (A) å j a k= i k #define max(a, b) (((a) >= (b))? (a) : (b)) long MaxSubseqSum0(int A[], unsigned Left, unsigned Right) { int Center, i; long Max 알고리즘설계와분석 (CSE3081-2반 ) 중간고사 (2013년 10월24일 ( 목 ) 오전 10시30분 ) 담당교수 : 서강대학교컴퓨터공학과임인성수강학년 : 2학년문제 : 총 8쪽 12문제 ========================================= < 주의 > 답안지에답을쓴후제출할것. 만약공간이부족하면답안지의뒷면을이용하고반드시답을쓰는칸에답안지의어느쪽의뒷면에답을기술하였는지명시할것.

More information

232 도시행정학보 제25집 제4호 I. 서 론 1. 연구의 배경 및 목적 사회가 다원화될수록 다양성과 복합성의 요소는 증가하게 된다. 도시의 발달은 사회의 다원 화와 밀접하게 관련되어 있기 때문에 현대화된 도시는 경제, 사회, 정치 등이 복합적으로 연 계되어 있어 특

232 도시행정학보 제25집 제4호 I. 서 론 1. 연구의 배경 및 목적 사회가 다원화될수록 다양성과 복합성의 요소는 증가하게 된다. 도시의 발달은 사회의 다원 화와 밀접하게 관련되어 있기 때문에 현대화된 도시는 경제, 사회, 정치 등이 복합적으로 연 계되어 있어 특 한국도시행정학회 도시행정학보 제25집 제4호 2012. 12 : pp.231~251 생활지향형 요소의 근린주거공간 분포특성 연구: 경기도 시 군을 중심으로* Spatial Distribution of Daily Life-Oriented Features in the Neighborhood: Focused on Municipalities of Gyeonggi Province

More information

Vol.259 C O N T E N T S M O N T H L Y P U B L I C F I N A N C E F O R U M

Vol.259 C O N T E N T S M O N T H L Y P U B L I C F I N A N C E F O R U M 2018.01 Vol.259 C O N T E N T S 02 06 28 61 69 99 104 120 M O N T H L Y P U B L I C F I N A N C E F O R U M 2 2018.1 3 4 2018.1 1) 2) 6 2018.1 3) 4) 7 5) 6) 7) 8) 8 2018.1 9 10 2018.1 11 2003.08 2005.08

More information

01_60p_서천민속지_1장_최종_출력ff.indd

01_60p_서천민속지_1장_최종_출력ff.indd 01 달 모양의 해안을 따라, 월하성 012 달 모양의 해안을 따라, 월하성 013 달 빛 아 래 신 선 이 노 는, 월 하 성 마 을 1장 달 모양의 해안을 따라, 월하성 초승달을 닮은 바닷가마을 월하성( 月 河 城 )이 위치한 충청남도 서천군( 舒 川 郡 )은 육지로는 동쪽으로 부 여군( 扶 餘 郡 ), 북쪽으로 보령시( 保 寧 市 )와 접하고 남쪽은 금강(

More information

Microsoft Word - A_Battleship_final.docx

Microsoft Word - A_Battleship_final.docx Problem A Battleship Time Limit: 6 seconds You are a member of the prestigious ICPC (Inter-Continental Protecting Corps) and fighting against the evil enemy. The battlefield is represented by an grid.

More information

09김정식.PDF

09김정식.PDF 00-09 2000. 12 ,,,,.,.,.,,,,,,.,,..... . 1 1 7 2 9 1. 9 2. 13 3. 14 3 16 1. 16 2. 21 3. 39 4 43 1. 43 2. 52 3. 56 4. 66 5. 74 5 78 1. 78 2. 80 3. 86 6 88 90 Ex e cu t iv e Su m m a r y 92 < 3-1> 22 < 3-2>

More information

... 수시연구 국가물류비산정및추이분석 Korean Macroeconomic Logistics Costs in 권혁구ㆍ서상범...

... 수시연구 국가물류비산정및추이분석 Korean Macroeconomic Logistics Costs in 권혁구ㆍ서상범... ... 수시연구 2013-01.. 2010 국가물류비산정및추이분석 Korean Macroeconomic Logistics Costs in 2010... 권혁구ㆍ서상범... 서문 원장 김경철 목차 표목차 그림목차 xi 요약 xii xiii xiv xv xvi 1 제 1 장 서론 2 3 4 제 2 장 국가물류비산정방법 5 6 7 8 9 10 11 12 13

More information

민속지_이건욱T 최종

민속지_이건욱T 최종 441 450 458 466 474 477 480 This book examines the research conducted on urban ethnography by the National Folk Museum of Korea. Although most people in Korea

More information

11¹ÚÇý·É

11¹ÚÇý·É Journal of Fashion Business Vol. 6, No. 5, pp.125~135(2002) The Present State of E-Business according to the Establishment Year and the Sales Approach of Dongdaemun Clothing Market Park, Hea-Ryung* and

More information

歯M991101.PDF

歯M991101.PDF 2 0 0 0 2000 12 2 0 0 0 2000 12 ( ) ( ) ( ) < >. 1 1. 1 2. 5. 6 1. 7 1.1. 7 1.2. 9 1.3. 10 2. 17 3. 25 3.1. 25 3.2. 29 3.3. 29. 31 1. 31 1.1. ( ) 32 1.2. ( ) 38 1.3. ( ) 40 1.4. ( ) 42 2. 43 3. 69 4. 74.

More information

歯1.PDF

歯1.PDF 200176 .,.,.,. 5... 1/2. /. / 2. . 293.33 (54.32%), 65.54(12.13%), / 53.80(9.96%), 25.60(4.74%), 5.22(0.97%). / 3 S (1997)14.59% (1971) 10%, (1977).5%~11.5%, (1986)

More information

l l l l l l l l l Lee, Geon Kook None This project was designed to establish the Tumor Bank of National Cancer Center in 2000. From the first tumor sample in 2000, the total of tumor and tumor-related

More information

http://www.kbc.go.kr/ Abstract Competition and Concentration in the Market for the Multichannel Video Programming G h e e - Young Noh ( P r o f e s s o, rschool of Communication,

More information

합격기원 2012년 12월 정기모의고사 해설.hwp

합격기원 2012년 12월 정기모의고사 해설.hwp 1 쪽 경찰학개론 -정답 및 해설- 본 문제의 소유권 및 판권은 윌비스경찰학원에 있습니다. 무단복사 판매시 저작권법에 의거 경고조치 없이 고발하여 민 형사상 책임을 지게 됩니다. 01. 3 3 경찰의 임무가 축소되면서 위생경찰, 건축경찰, 산림경찰 등처럼 다른 행정작용과 결합하여 특별한 사회적 이익의 보호를 목적으로 하면서 그 부수작용으로서 사회공공의 안녕과

More information

11이정민

11이정민 Co-Evolution between media and contents in the Ubiquitous era - A Study of the Format of Mind-Contents based on Won-Buddhism - Lee, Jung-min Korean National University of Arts : Keyword : Ubiquitous, Convergence,

More information

11¹Ú´ö±Ô

11¹Ú´ö±Ô A Review on Promotion of Storytelling Local Cultures - 265 - 2-266 - 3-267 - 4-268 - 5-269 - 6 7-270 - 7-271 - 8-272 - 9-273 - 10-274 - 11-275 - 12-276 - 13-277 - 14-278 - 15-279 - 16 7-280 - 17-281 -

More information

2 min 응용 말하기 01 I set my alarm for 7. 02 It goes off. 03 It doesn t go off. 04 I sleep in. 05 I make my bed. 06 I brush my teeth. 07 I take a shower.

2 min 응용 말하기 01 I set my alarm for 7. 02 It goes off. 03 It doesn t go off. 04 I sleep in. 05 I make my bed. 06 I brush my teeth. 07 I take a shower. 스피킹 매트릭스 특별 체험판 정답 및 스크립트 30초 영어 말하기 INPUT DAY 01 p.10~12 3 min 집중 훈련 01 I * wake up * at 7. 02 I * eat * an apple. 03 I * go * to school. 04 I * put on * my shoes. 05 I * wash * my hands. 06 I * leave

More information

슬라이드 1

슬라이드 1 Pairwise Tool & Pairwise Test NuSRS 200511305 김성규 200511306 김성훈 200614164 김효석 200611124 유성배 200518036 곡진화 2 PICT Pairwise Tool - PICT Microsoft 의 Command-line 기반의 Free Software www.pairwise.org 에서다운로드후설치

More information

<32382DC3BBB0A2C0E5BED6C0DA2E687770>

<32382DC3BBB0A2C0E5BED6C0DA2E687770> 논문접수일 : 2014.12.20 심사일 : 2015.01.06 게재확정일 : 2015.01.27 청각 장애자들을 위한 보급형 휴대폰 액세서리 디자인 프로토타입 개발 Development Prototype of Low-end Mobile Phone Accessory Design for Hearing-impaired Person 주저자 : 윤수인 서경대학교 예술대학

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA 무선 센서 네트워크 환경에서 링크 품질에 기반한 라우팅에 대한 효과적인 싱크홀 공격 탐지 기법 901 무선 센서 네트워크 환경에서 링크 품질에 기반한 라우팅에 대한 효과적인 싱크홀 공격 탐지 기법 (A Effective Sinkhole Attack Detection Mechanism for LQI based Routing in WSN) 최병구 조응준 (Byung

More information

I&IRC5 TG_08권

I&IRC5 TG_08권 I N T E R E S T I N G A N D I N F O R M A T I V E R E A D I N G C L U B The Greatest Physicist of Our Time Written by Denny Sargent Michael Wyatt I&I Reading Club 103 본문 해석 설명하기 위해 근래의 어떤 과학자보다도 더 많은 노력을

More information

03±èÀçÈÖ¾ÈÁ¤ÅÂ

03±èÀçÈÖ¾ÈÁ¤Å x x x x Abstract The Advertising Effects of PPL in TV Dramas - Identificaiton by Implicit Memory-based Measures Kim, Jae - hwi(associate professor, Dept. of psychology, Chung-Ang University) Ahn,

More information

Microsoft PowerPoint - 7-Work and Energy.ppt

Microsoft PowerPoint - 7-Work and Energy.ppt Chapter 7. Work and Energy 일과운동에너지 One of the most important concepts in physics Alternative approach to mechanics Many applications beyond mechanics Thermodynamics (movement of heat) Quantum mechanics...

More information

<32303131C7CFB9DDB1E22028C6EDC1FD292E687770>

<32303131C7CFB9DDB1E22028C6EDC1FD292E687770> 통일문제연구 2011년 하반기(통권 제56호) 전쟁 경험의 재구성을 통한 국가 만들기* - 역사/다큐멘터리/기억 - 1)이 명 자** Ⅰ. 들어가는 말 Ⅱ. 과 제작배경 Ⅲ. 과 비교 Ⅳ. 역사/다큐멘터리/기억 현대 남북한 체제 형성에서 주요한 전환점인 한국전 쟁은 해방 후 시작된 좌우대립과 정치적,

More information

12È«±â¼±¿Ü339~370

12È«±â¼±¿Ü339~370 http://www.kbc.go.kr/ k Si 2 i= 1 Abstract A Study on Establishment of Fair Trade Order in Terrestrial Broadcasting Ki - Sun Hong (Professor, Dept. of Journalism & Mass Communication,

More information

<BFA9BAD02DB0A1BBF3B1A4B0ED28C0CCBCF6B9FC2920B3BBC1F62E706466>

<BFA9BAD02DB0A1BBF3B1A4B0ED28C0CCBCF6B9FC2920B3BBC1F62E706466> 001 002 003 004 005 006 008 009 010 011 2010 013 I II III 014 IV V 2010 015 016 017 018 I. 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 III. 041 042 III. 043

More information

<B0E6C8F1B4EBB3BBB0FA20C0D3BBF3B0ADC1C E687770>

<B0E6C8F1B4EBB3BBB0FA20C0D3BBF3B0ADC1C E687770> 심전도연수강좌 : 처음시작하는사람들을위한심전도 연세대학교원주의과대학순환기내과학교실 안민수 Cardiac Electrophysiology I : Automaticity : 60-100 회 /min, His bundle : 40-60 회 /min Bundle branch : 20-40 회 /min Purkinje fiber : 20 회 /min Cardiac Electrophysiology

More information

예제 1.1 ( 관계연산자 ) >> A=1:9, B=9-A A = B = >> tf = A>4 % 4 보다큰 A 의원소들을찾을경우 tf = >> tf = (A==B) % A

예제 1.1 ( 관계연산자 ) >> A=1:9, B=9-A A = B = >> tf = A>4 % 4 보다큰 A 의원소들을찾을경우 tf = >> tf = (A==B) % A 예제 1.1 ( 관계연산자 ) >> A=1:9, B=9-A A = 1 2 3 4 5 6 7 8 9 B = 8 7 6 5 4 3 2 1 0 >> tf = A>4 % 4 보다큰 A 의원소들을찾을경우 tf = 0 0 0 0 1 1 1 1 1 >> tf = (A==B) % A 의원소와 B 의원소가똑같은경우를찾을때 tf = 0 0 0 0 0 0 0 0 0 >> tf

More information

<BCF6BDC3323030392D31385FB0EDBCD3B5B5B7CEC8DEB0D4C5B8BFEEB5B5C0D4B1B8BBF3BFACB1B85FB1C7BFB5C0CE2E687770>

<BCF6BDC3323030392D31385FB0EDBCD3B5B5B7CEC8DEB0D4C5B8BFEEB5B5C0D4B1B8BBF3BFACB1B85FB1C7BFB5C0CE2E687770> ... 수시연구 2009-18.. 고속도로 휴게타운 도입구상 연구 A Study on the Concept of Service Town at the Expressway Service Area... 권영인 임재경 이창운... 서 문 우리나라는 경제성장과 함께 도시화가 지속적으로 진행되어 지방 지역의 인구감소와 경기의 침체가 계속되고 있습니다. 정부의 다각 적인

More information

Journal of Educational Innovation Research 2017, Vol. 27, No. 2, pp DOI: : Researc

Journal of Educational Innovation Research 2017, Vol. 27, No. 2, pp DOI:   : Researc Journal of Educational Innovation Research 2017, Vol. 27, No. 2, pp.251-273 DOI: http://dx.doi.org/10.21024/pnuedi.27.2.201706.251 : 1997 2005 Research Trend Analysis on the Korean Alternative Education

More information