Microsoft Word - A_Battleship_final.docx

Size: px
Start display at page:

Download "Microsoft Word - A_Battleship_final.docx"

Transcription

1 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. The coordinate of the leftmost and lowest point is 1, 1 and that of the rightmost and highest point is,. The enemy has a fleet of battleships. Each battleship is represented by a line segment whose length is greater than 0 and its endpoints are, and,. Also, its weight is. You can fire a laser cannon times to destroy battleships. Each time you can fire it either horizontally or vertically. If you shoot it vertically, the laser is represented by a line linking, 1 and, and all the battleships which meet the line (including the endpoints) are destroyed. If you shoot it horizontally, the laser is represented by a line linking 1, and, and those which meet the line (including the endpoints) are destroyed. While you are a brave soldier, due to the inefficiency of bureaucracy, you are asked to report the heaviest battleship you just destroyed each time you shoot the laser cannon. Consider the example in Figure 1. There are five battleships on a 5 5 grid. The weight of a battleship is written next to it. Assume that we first shoot the cannon vertically and the laser is a line linking 4, 1 and 4,5. Then two battleships are destroyed: one with weight 4 and the other with weight 5, which is heavier. Therefore we report 5. Next we shoot the cannon horizontally and the laser is a line linking 1,4 and 5,4. Again two battleships are destroyed: one with weight 1 and the other with weight, which is heavier. We report. Note that the battleship with weight 4 is already destroyed at the first shooting. Figure 1. An example of battlefield with five battleships. Given the locations of battleships and your shooting information, write a program which reports the heaviest battleship you destroyed each time you shoot the cannon. 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 integers,, and, the size of the grid, the number of battleships, and the number of times you can shoot the laser cannon, respectively, where 1 1,000,000,000 and 1, 100,000. Each of the following lines contains five integers,,, and separated by a space which represent the endpoints of a battleship, and, (1,,, ) and its weight 1 1,000,000. Also each of the following lines contains two integers and where 1. Either 0 or 1. If 0, you shoot the cannon horizontally and the laser is represented by a ICPC 013 Problem A: Battleship

2 line linking 1, and,. If 1, you shoot it vertically and the laser is represented by a line linking, 1 and,. Output Your program is to write to standard output. Print exactly lines for each test case. Each line should contain an integer value, the weight of the heaviest battleship you destroyed by shooting the laser cannon. If you destroyed nothing, print 0. The following shows sample input and output for two test cases. Sample Input Output for the Sample Input ICPC 013 Problem A: Battleship

3 Problem B Cain Calendar Time Limit: 1 second It was recently revealed by the ICPC excavation team that the Inca Empire was established just after the Cain Empire which was a splendid civilization that flourished in South America. It is believed that the people in the Cain Empire used an interesting odd calendar. In their calendar, a year was represented by :, where and are natural numbers which are less than or equal to and, respectively. The first year, that is, the beginning of the world is represented by 1:1. The second year is represented by :. Let : be the following year of :. If, 1, otherwise 1. Similarly, if, 1, otherwise 1. The last year of their calendar is :. It is said that there was a prophecy which states the world ends in the year :. For example, assume that 10 and 1. The first year is represented by 1:1. The year 1:11 represents the 11 th year, 3:1 represents the 13 th year, and 10:1 represents the 60 th year which is the last year. Given four integers,,, and, write a program that computes the number such that : represents the th year, where : is the last year of the world in the Cain Calendar. 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 a single line containing four integers,,, and 1, 40,000, 1, 1 ), where : is the last year of the world in the Cain Calendar. Output Your program is to write to standard output. Print exactly one line for each test case. The line should contain an integer, where the th year is represented by : for and given in the input. If there doesn t exist a year represented by :, print -1. The following shows sample input and output for three test cases. Sample Input Output for the Sample Input ICPC 013 Problem B: Cain Calendar

4 Problem B 카잉달력 Time Limit: 1 second 최근에 ICPC 탐사대는남아메리카의잉카제국이놀라운문명을지닌카잉제국을토대로하여세워졌다는사실을발견했다. 카잉제국의백성들은특이한달력을사용한것으로알려져있다. 그들은 과 보다작거나같은두개의자연수, 를가지고각년도를 : 와같은형식으로표현하였다. 그들은이세상의시초에해당하는첫번째해를 1:1 로표현하고, 두번째해를 : 로표현하였다. : 의다음해를표현한것을 : 이라고하자. 만일 이면 1이고, 그렇지않으면 1이다. 같은방식으로만일 이면 1이고, 그렇지않으면 1이다. : 은그들달력의마지막해로서, 이해에세상의종말이도래한다는예언이전해온다. 예를들어, 10 이고 1라고하자. 첫번째해는 1:1 로표현되고, 11 번째해는 1:11 로표현된다. 3:1 은 13 번째해를나타내고, 10:1 는마지막인 60 번째해를나타낸다. 네개의정수,, 와 가주어질때, : 이카잉달력의마지막해라고하면 : 는몇번째해를나타내는지를구하는프로그램을작성하라. 입력 (Input) 입력데이터는표준입력을사용한다. 입력은 개의테스트데이터로구성된다. 입력의첫번째줄에는입력데이터의수를나타내는정수 가주어진다. 각테스트데이터는한줄로구성된다. 각줄에는네개의정수,, 와 가주어진다 1, 40,000, 1, 1 ), 여기서 : 은카잉달력의마지막해를나타낸다. 출력 (Output) 출력은표준출력을사용한다. 각테스트데이터에대해, 정수 를한줄에출력한다. 여기서 는 : 가 번째해를나타내는것을의미한다. 만일 : 에의해표현되는해가없다면, 즉, : 가유효하지않은표현이면, -1을출력하라. ICPC 013 Problem B: 카잉달력

5 다음은세개의테스트데이터에대한입력과출력의예이다. 입력예제 (Sample Input) 출력예제 (Output for the Sample Input) ICPC 013 Problem B: 카잉달력

6 Problem C Casting Time Limit: 10 seconds Casting is a manufacturing process in which liquid is poured into a cast that has a cavity with the shape of the object to be manufactured. The liquid then hardens, after which the cast is removed. To ensure that the given object can be mass produced by re-using the same case parts, the cast parts must be removed from the object without destroying either the cast parts or the object. Figure 1. Figure 1(a) shows an object (dark gray) with its cast (light gray). Our goal is to divide the cast into two parts along a straight line through two vertices of the object such that the cast parts can be removed from the object by translation without destroying either the cast parts or the object. In Figure 1(b), the cast is divided into two parts by the straight line through and such that the upper part is removed vertically upward and the lower part is removed vertically downward from the object without destroying either the cast parts or the object. Figure 1(c) and Figure (d) show such divisions by the straight line through and, and by the straight line through and, respectively. However, not every pair of vertices defines such a division. In Figure 1(e), the left part defined by the straight line through and cannot be removed from the object without destroying either the cast parts or the object. Given a convex polygon with vertices in the plane, your program is to find all pairs, of vertices of such that both cast parts of divided by the straight line through, can be removed by translation without destroying either the cast parts or the object. ICPC 013 Problem C: Casting

7 Input Your program is to read from standard input. The input consists of test cases. The number of test cases is given in the first line of the input. Each test case starts with integer, the number of vertices of a convex polygon, where 3 100,000. The next line contains a sequence of integers,, where and are the -coordinate and -coordinate of vertex of, respectively. The coordinates are all integers with 1,000,000,000 1,000,000,000 and 1,000,000,000 1,000,000,000. Vertices,,, of are given in clockwise order along the boundary of. Output Your program is to write to standard output. For each test case, print a line containing the number of pairs, of vertices with such that both cast parts of divided by the straight line through, can be removed by translation without destroying either the cast parts or the object. The following shows sample input and output for three test cases. Sample Input Output for the Sample Input ICPC 013 Problem C: Casting

8 Problem D Dual Priority Queue Time Limit: 3 seconds A dual priority queue is a data structure in which we can insert and delete data like a typical queue. Its difference from a typical queue is that when an item is to be deleted from the queue either an item with highest priority or with lowest priority in it is deleted according to the operation for deletion. There are two operations for the dual priority queue, one for inserting an item into it, the other for deleting an item from it. Deletion operation itself has two parameters: one for deleting an item with highest priority from it, and the other for deleting an item with lowest priority. Suppose there is a dual priority queue which stores integers only. The value of each integer in is considered the priority of itself. Given a list of operations, write a program that processes the operations for and shows the minimum and maximum numbers in after finishing the operations. Input Your program is to read from standard input. The input consists of test cases. The number of test cases is given in the first line of the input. Each test case starts with a line containing an integer 1,000,000, the number of operations for. In the next lines, each line contains either D or I followed by an integer. Operation I means inserting integer into. Note that the same integers can be inserted into. Operation D 1 means deleting the maximum number from. While Operation D 1 is used to delete the minimum number from. If there are two or more maxima (minima) in when the operation is D 1 ( D 1 ), only one of them is deleted. If is empty when the operation is D you can ignore it. Each input to be inserted into is a 3-bit integer. Output Your program is to write to standard output. For each test case, print the maximum and the minimum numbers among those which remain in. The two numbers should be printed in a line separated by a blank. If is empty at the end, print EMPTY. The following shows sample input and output for two test cases. Sample Input 7 I 16 I D -1 D 1 D 1 I 13 Output for the Sample Input EMPTY ICPC 013 Problem D: Dual Priority Queue

9 D -1 9 I -45 I 653 D 1 I -64 I 45 I 97 D 1 D -1 I 333 ICPC 013 Problem D: Dual Priority Queue

10 Problem D 이중우선순위큐 Time Limit: 3 seconds 이중우선순위큐 (dual priority queue) 는전형적인우선순위큐처럼데이터를삽입, 삭제할수있는자료구조이다. 전형적인큐와의차이점은데이터를삭제할때연산 (operation) 명령에따라우선순위가가장높은데이터또는가장낮은데이터중하나를삭제하는점이다. 이중우선순위큐를위해선두가지연산이사용되는데, 하나는데이터를삽입하는연산이고다른하나는데이터를삭제하는연산이다. 데이터를삭제하는연산은또두가지로구분되는데하나는우선순위가가장높은것을삭제하기위한것이고다른하나는우선순위가가장낮은것을삭제하기위한것이다. 정수만저장하는이중우선순위큐 가있다고가정하자. 에저장된각정수의값자체를우선순위라고간주하자. 에적용될일련의연산이주어질때이를처리한후최종적으로 에저장된데이터중최대값과최솟값을출력하는프로그램을작성하라. 입력 (Input) 입력데이터는표준입력을사용한다. 입력은 개의테스트데이터로구성된다. 입력의첫번째줄에는입력데이터의수를나타내는정수 가주어진다. 각테스트데이터의첫째줄에는 에적용할연산의개수를나타내는정수 1,000,000 가주어진다. 이어지는 줄각각엔연산을나타내는문자 ( D 또는 I ) 와정수 이주어진다. I 은정수 을 에삽입하는연산을의미한다. 동일한정수가삽입될수있음을참고하기바란다. D 1 는 에서최대값을삭제하는연산을의미하며, D - 1 는 에서최솟값을삭제하는연산을의미한다. 최대값 ( 최솟값 ) 을삭제하는연산에서최대값 ( 최솟값 ) 이둘이상인경우, 하나만삭제됨을유념하기바란다. 만약 가비어있는데적용할연산이 D 라면이연산은무시해도좋다. 에저장될모든정수는 3-비트정수이다. ICPC 013 Problem D: 이중우선순위큐

11 출력 (Output) 출력은표준출력을사용한다. 각테스트데이터에대해, 모든연산을처리한후 에남아있는값중최대값과최솟값을출력하라. 두값은한줄에출력하되하나의공백으로구분하라. 만약 가비어있다면 EMPTY 를출력하라 다음은두개의테스트데이터에대한입력과출력의예이다. 입력예제 (Sample Input) 7 I 16 I D -1 D 1 D 1 I 13 D -1 9 I -45 I 653 D 1 I -64 I 45 I 97 D 1 D -1 I 333 출력예제 (Output for the Sample Input) EMPTY ICPC 013 Problem D: 이중우선순위큐

12 Problem E Falling Ants Time Limit: 1 second ants are on a stick where some facing right and some facing left. You can assume all ants are so tiny compared to the distance between them, that they can be considered moving points without volume. From a start signal, all ants begin to march in whichever direction they are currently facing. All ants march in a constant speed such as 1mm per second. If two different ants collide on a point, then they bounce and reverse their previous direction. Bouncing and reversing movement does not take any time. When an ant is reaching the end of stick, that ant falls off from the stick and down to the ground. We assume the stick is floating over a floor. Initially all ants are placed in distinct positions, that means no two ants are placed at a same point of the stick. We represent each ant using a signed integer, called an ant ID. The sign of the ant ID denotes the facing direction in the intial state, where '-'('+') means facing the left (right). The absolute value of the ant ID is one of N integers 1,,,. So the absolute values of the ant ID are all distinct. In Figure 1, you can see that there are 6 ants with the signed ID 4, 5, 1, 3,, 6 whose corresponding positions are 5,8,19,,4,5 on a long stick with length 30. The arrow assigned for each ant shows the facing direction in the initial state. The position of the left end is 0, and the position of the right end is 30. It is easy to see that the ant of ID +6 will arrive at the right end of the stick at time 5, and then it falls off the stick at L= Figure 1. You are given information of ants before marching; ant ID and the corresponding position on a stick. If two ants are falling simultaneously from both sides (left and right), then we will break the tie of falling order such that the ant with smaller ID number falls off slightly earlier than the other. Let us give one example for this case. In Figure, if two ants with ID 1, will reach each end simultaneously, the ant of ID 1 will fall off earlier than the ant of ID since 1. So the falling sequence of four ants in Figure is 1,,4,3, i.e., the ant of ID 1 falls off the first and the ant of ID 3 falls off the last Figure. ICPC 013 Problem E: Falling Ants

13 Given a positive integer 1, you should find the -th ant in the falling sequence, i.e., the -th falling ant. 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 three integer numbers, and, where is the total number of the ants, is the length of the stick, and is the falling order we are concerned with. Each line in the following has two integer numbers, and, where is the initial position of the ant. Note that is increasing such as. Note that 1 1, 3 100,000, 10 5,000,000 and 1. Output Your program is to write to standard output. Print exactly one line for each test case. The line should contain the ID number of the -th falling ant from the stick among all ants. You should not write + symbol if the ant ID is positive. The following shows sample input and output for two test cases which are the description of Figure 1 and. Sample Input Output for the Sample Input - ICPC 013 Problem E:Falling Ants

14 Problem F KCPC Time Limit: 1 second You are participating in the prestigious programming competition called KCPC (Korean Collegiate Programming Contest). You are supposed to solve problems and for each problem you get between 0 and 100 points each time you submit your solution to the server. The submission is done electronically and the server maintains a log in order of submission time. The log includes your team ID, the problem number, and your score. For any problem you can submit your solution several times and you get the greatest points among your submissions. (For a problem, you get 0 points if you make no submission for the problem.) Your final score is simply the sum of the points you earned and your ranking is (the number of teams with higher score than yours) + 1. However, there may be two or more teams with the same score and the tie is broken by applying the ground rules in the following order. Rule 1: If the final scores are the same, the team with the smaller number of submissions in total wins. Rule : If both the final scores and the numbers of submission are the same, the team whose last submission is earlier wins. Assume that no two solutions are submitted at the same time and every team makes at least one submission. Given the log of the server, write a program to compute your ranking. Input Your program is to read from standard input. The input consists of test cases. The number of test cases is given in the first line of the input. Each test case starts with four integers, the number of teams, the number of problems, your team ID, and the number of log entries, where 3, 100, 1, and 3 10,000. In the following m lines, the information on submission is given in order of submission time. Each line contains three integers, team ID, problem number, and score, where 1, 1, and Output Your program is to write to standard output. Print exactly one line for each test case. The line should contain your ranking. The following shows sample input and output for two test cases. Sample Input Output for the Sample Input 1 ICPC 013 Problem F: KCPC

15 ICPC 013 Problem F: KCPC

16 Problem F KCPC 시간제한 : 1 초 당신은유명프로그래밍대회인 KCPC(Korean Collegiate Programming Contest) 에참가하고있다. 이대회에서총 개의문제를풀게되는데, 어떤문제에대한풀이를서버에제출하면그문제에대해 0점에서 100점사이의점수를얻는다. 풀이를제출한팀의 ID, 문제번호, 점수가서버의로그에제출되는시간순서대로저장된다. 한문제에대한풀이를여러번제출할수있는데, 그중최고점수가그문제에대한최종점수가된다. ( 만약어떤문제에대해풀이를한번도제출하지않았으면그문제에대한최종점수는 0점이다.) 당신팀의최종점수는각문제에대해받은점수의총합이고, 당신의순위는 ( 당신팀보다높은점수를받은팀의수 )+1 이다. 점수가동일한팀이여럿있을수있는데, 그경우에는다음규칙에의해서순위가정해진다. 규칙 1. 최종점수가같은경우, 풀이를제출한횟수가적은팀의순위가높다. 규칙. 최종점수도같고제출횟수도같은경우, 마지막제출시간이더빠른팀의순위가높다. 동시에제출되는풀이는없고, 모든팀이적어도한번은풀이를제출한다고가정하라. 서버의로그가주어졌을때, 당신팀의순위를계산하는프로그램을작성하시오. 입력 (Input) 입력데이터는표준입력을사용한다. 입력은 개의테스트데이터로구성된다. 입력의첫번째줄에는테스트데이터의수를나타내는정수 가주어진다. 각테스트데이터의첫번째줄에는팀의개수, 문제의개수, 당신팀의 ID, 로그엔트리의개수 을나타내는 4 개의정수가주어진다. 여기서, 3, 100, 1, 3 10,000이다. 그다음 개의줄에는각풀이에대한정보가제출되는순서대로주어진다. 각줄에는팀 ID, 문제번호, 획득한점수 를나타내는세개의정수가주어진다. 여기서 1, 1, 0 100이다. ICPC 013 Problem F: KCPC

17 출력 (Output) 출력은표준출력을사용한다. 주어진각테스트데이터에대해당신팀의순위를한줄에출력하여야한다. 다음은두개의테스트데이터에대한입력과출력의예이다. 입력예제 (Sample Input) 출력예제 (Output for the Sample Input) 1 ICPC 013 Problem F: KCPC

18 Problem G Moore Machine Time Limit: 5 seconds Moore Machine is a finite state machine of which the output is determined by the states of them. The Moore Machine is named after Edward F. Moore, an American mathematician and computer scientist. The state transtion of a Moore Machine is directed by the given input. For example, if the input is given as aabba, the output of the following Moore Machine is PRETTY. b a b b a a b a 1/P /R 1/P /R 3/E 4/T 5/Y b Figure 1. An example of a Moore Machine a In Figure 1, a circle denotes each state and the label on the arrow denotes the input symbol. One of the states is designated as the start state, which is represented by an arrow with no origin pointing to the state. In this case, the start state is State 1. Each state N with output symbol S is depicted in label N/S. Generally, a Moore Machine can have cycles. However, we can think of a certain kind of Moore Machine which has no cycle at all. Let s call this kind of Moore Machine a series-parallel Moore Machine. Unfortunately, one of the output symbols of a series-parallel Moore Machine is erased. The problem is to find the erased output symbol using the given output of the machine. Note that it is not always possible to find the erased symbol. For example, assume the following series-parallel Moore Machine is given. B A C Figure. An example of a series-parallel Moore Machine In Figure, only the output symbols are shown as labels on states for simplicity. The white circle without any ICPC 013 Problem G: Moore Machine

19 label denotes the state whose output symbol is erased. If the given output of the machine is ADC, then we can determine the erased symbol is D. However, if the output is ABC, we cannot uniquely determine the erased symbol. Or, if the output is given as ABD, it is not a valid output of this machine. Your program should also determine these impossible cases. Since the Moore Machine is reduced to a series-parallel graph, the representation of the machine itself can be defined in a straight-forward way. A Moore Machine consists of a single state, whose output is S, is denoted by S itself. A Moore Machine consists of a single state, whose output symbol is erased, is denoted by the underscore symbol _. The Moore Machine consists of a series of sub-machines, whose descriptions are,,, and respectively, is denoted by. The Moore Machine consists of a parallel connection sub-machines, whose descriptions are,,, and respectively, is denoted by. If a Moore Machine is used as a part of another bigger Moore Machine, the parentheses can be used for enclosing the part. Using this representation, the above Moore Machine can be given as A(B _)C. Write a program determining the erased symbol for a given series-parallel Moore Machine and an output produced by the machine. If the erased symbol cannot be uniquely determined, print the underscore symbol _ instead. If the output cannot be produced from the given machine, print the exclamation mark! instead. Input Your program is to read from standard input. The input consists of test cases. The number of test cases is given in the first line of the input. From the second line, each test case is given. A test case consists of two lines. The string in the first line of a test case contains the representation of the series-parallel Moore Machine. The second line contains an output of the machine. Only capital English alphabets are used for the output symbols. It is assumed that the outermost connection of the Moore Machine is serial. It is also assumed that there is only one erased symbol in the input machine. The lengths of the input lines of test cases are less than or equal to 100. Output Your program is to write to standard output. Print exactly one line for each test case. The line should contain the erased output symbol. If it cannot be determined, the underscore symbol should be printed. If the output cannot be produced from the machine, the exclamation mark symbol should be printed. The following shows sample input and output for three test cases. Sample Input 3 A(B _)C ADC A(B D _)C ADC A(B CD(E _)G)E BOY Output for the Sample Input D _! ICPC 013 Problem G: Moore Machine

20 Problem H Networks with Unidirectional Links Time Limit: 1 second There is a multicomputer system that consists of a number of nodes, each with its own memory. The nodes in the system are interconnected via unidirectional communication links. The interconnection network of the system, representing the way in which the nodes are connected together, is modeled as a directed graph, where vertices and directed edges respectively represent nodes and unidirectional links of the network. Figure 1 shows an example of interconnection networks with fourteen nodes interconnected via nineteen unidirectional links. Linear arrays and rings are two of the important computational structures in interconnection networks. In a linear array, each node except for the extreme ends has two neighboring nodes, one to its left and one to its right, where the two nodes at the ends are connected to their single neighbor. If the nodes at either end are connected, we refer to it as a ring. More specifically, the nodes of a linear array with nodes can be numbered from 0 to 1 so that there exists a unidirectional link from node to node +1 for every 0 1. The linear array becomes a ring if we add a unidirectional link from the node 1 to the node 0. To support parallel applications that require one of the two aforementioned computational structures, we needs to decompose the system into several subsystems each of whose interconnection networks is a ring or a linear array. The subsystems should be pairwise node-disjoint, i.e., no two subsystems share a common node. According to a recent report, a ring composed of nodes is worth dollars while a linear array of nodes is worth 1 dollars. This motivates the study on how to decompose the system into subsystems in order to maximize profits. You are to write a program for decomposing the interconnection network of our multicomputer system into rings and/or linear arrays whose total value is the maximum possible. Note that a linear array may have only one node and in that case, its value is zero dollar. Figure 1. An interconnection network and its decomposition into a ring of six nodes (red) and a linear array of eight nodes (green). The total value of this decomposition is thirteen dollars, which is the maximum possible. ICPC 013 Problem H: Networks with Uni...

21 Input Your program is to read from standard input. The input consists of T test cases, where the positive integer T is given in the first line of the input, followed by the description of each test case. The first line of a test case contains two positive integers and, respectively indicating the numbers of nodes and unidirectional links in an interconnection network, in which we assume 1,000 and 50,000. The nodes are indexed 0 to 1. In the following lines, each line contains two integers and, which represent a unidirectional link from node to node. The two integers given in a single line are always separated by a space. Output Your program is to write to standard output. Print exactly one line for each test case. The line should contain an integer, representing the maximum total value in dollars that can be achieved by decomposing the interconnection network into rings and/or linear arrays. The following shows sample input and output for three test cases. Sample Input Output for the Sample Input ICPC 013 Problem H: Networks with Uni...

22 Problem I Pickup Game Time Limit: 10 seconds You are playing a computer game called the "Pickup." The rules are as follows: (1) There are a number of horizontal and vertical line segments. (See the figure below.) () You can "Pickup" a pair of line segments by clicking on the crossing made by the pair. (The pair disappears from screen when you do this.) (3) Each line segment is given a weight. (4) When you pick up a pair with weights and, you are given a score of. Figure 1. An Example Screen The first goal is to pick up the most line segments. The second goal is to maximize the total score. That is, if there are more than one way of picking up the most line segments, then you have to find the one with the largest possible score. Write a program, given the specification of an instance of the game, which computes the maximum possible number of line segments that can be picked up and the maximum possible score. 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 integers and, the number of horizontal and vertical line segments, respectively, where 1, 00. Each of the following lines contains five integers,,,,, representing the two endpoints (note, ) and the weight of each horizontal line segment. Also each of the following lines contains an analogous information for each vertical line segment. All coordinate values are positive and are less than or equal to 100,000. The weights are also positive and are less than or equal to 0. Any pair of line segments may share at most one point which is never an endpoint of the line segments. ICPC 013 Problem I: Pickup Game

23 Output Your program is to write to standard output. Print exactly one line containing two integers for each test case. You should output the maximum possible number of line segment pairs that can be picked up, followed by maximum possible score while picking up the most pairs of line segments. The following shows sample input and output for two test cases. Sample Input Output for the Sample Input ICPC 013 Problem I: Pickup Game

24 Problem J Registration Time Limit: 1 second Print out your ICPC team number and team name. Input No input is given for this problem. Output Your program is to write to standard output. Print exactly two lines. The first line should contain your team number, and the second line should contain your full team name, even if your team name contains one or more blanks (a character of ASCII 3). The following shows sample input and output, where the team number is 13 and the team name is Your_ICPC_Team_Name. Notice that no input is given. Sample Input Output for the Sample Input 13 Your_ICPC_Team_Name ICPC 013 Problem J: Registration

25 Problem J Registration Time Limit: 1 second 자신의 ICPC 팀번호와팀이름 (team name) 을그대로출력하는프로그램을작성하시오. Input 이문제는입력이없다. Output 표준출력 (standard output) 으로출력해야한다. 첫줄에자신의팀번호, 둘째줄에팀이름을출력한다. 출력할팀이름은공백문자 (ASCII 코드 3 번인문자 ) 를포함하더라도, 공백문자를포함하여완전한이름을출력해야한다. 다음은팀번호가 13 번, 팀이름 (team name) 이 Your_ICPC_Team_Name 인경우의입출력예제이다. 참고로입력은없으므로주의한다. Sample Input Output for the Sample Input 13 Your_ICPC_Team_Name ICPC 013 Problem J: Registration

26 Problem K Security Time Limit: seconds Today most shopkeepers employ a security service. On a famous street, there are several shops. The shops are protected by a guard belonging to a security company, which is also located on the street. For simplicity, we consider the shops and the company as points on a line, running in order from left to right. The company is located at a point for some, denoted by. Starting at the point, the guard should visit each point at least once a day to protect the shops. For each, it takes, time for the guard to move between and. The latency l of is considered to be the time when the guard first visits after leaving s. Obviously the latency l of the starting point is 0. The guard shall travel to minimize the sum of latencies, which is l. For example, in Figure 1, there are six points to, where the starting point is. Also, 7,, 4,, 1,,,, 9. When the guard first walks right from, the latency l and l are determined as 1 and 3, respectively. If the guard travels as in Figure 1, then the sum of all the latencies is 71. It is the minimum for all possible travels of the guard. Figure 1. Given an integer, the number of points, and the times, for the guard to move between and, 1,, 1, write a program to minimize the sum of latencies of points when traveling from a starting point. Input Your program is to read from standard input. The input consists of test cases. The number of test cases is given in the first line of the input. Each test case starts with an integer (1 100), the number of points. The second line contains an integer (1 ), saying that the -th point is the starting point, that is,. The -th line of the following 1 lines contains an integer (1 15,000,000), representing the time, for 1,, 1. Output Your program is to write to standard output. Print exactly one line for each test case. The line should contain the minimum of the sum of latencies for all possible movements of the guard. The following shows sample input and output for two test cases. ICPC 013 Problem K: Security

27 Sample Input Output for the Sample Input ICPC 013 Problem K: Security

28 Problem L Tree Time Limit: 3 seconds A binary tree is a basic and important data structure. As illustrated in Figure 1, a binary tree has a unique root node. Each node has at most two child nodes that are ordered from left to right. Let be a binary tree of nodes. Nodes of have unique id numbers from 1 to. For in Figure 1, the node of id 3 is the root node. The node of id 1 has only right child node, but two nodes of id 4 and id 7 have only left child nodes. Two nodes of id 3 and id 6 have left and right child nodes. The other nodes, called leaf nodes, have no child nodes. Figure 1. A binary tree with 8 nodes. The dashed vertical lines from the nodes are imaginary lines to distinguish their left and right child nodes We have three methods to traverse all nodes of ; preorder, inorder, and postorder traversals. These three traversals are done by the following C-style pseudo codes: For a node of, we denote by. left and. right its left child node and right child node, respectively. If has no left child, then. left is equal to. If has no right child, then. right is equal to. preorder(node ) { printf(id number of ); if (. left ) preorder(. left); if (. right ) preorder(. right); } inorder(node ) { if (. left ) inorder(. left); printf(id number of ); if (. right ) inorder(. right); } postorder(node ) { if (. left ) postorder(. left); if (. right ) postorder(. right); printf(id number of ); } You are now given two lists of id numbers of ; one is the list obtained by preorder traversal and the other is by inorder traversal, i.e., two lists obtained by calling preorder(root node of ) and inorder(root node of ). It is well known that can be reconstructed from these two lists. You need to reconstruct from the preorder and inorder traversal lists of, and output its postorder traversal list which should be the same as the result of postorder(root node of ). ICPC 013 Problem L: Tree

29 For example, if you are given preorder traversal list of 3, 6, 5, 4, 8, 7, 1, and inorder traversal list of 5, 6, 8, 4, 3, 1,, 7, then you should reconstruct the tree as in Figure 1, and output its postorder traversal list, which is 5, 8, 4, 6,, 1, 7, 3. Input Your program is to read from standard input. The input consists of test cases. The number of test cases is given in the first line of the input. Each test case starts with integer, the number of nodes of a rooted and ordered binary tree, where 1 1,000. Nodes of are assumed to have distinct id number from 1 to. The next line contains a list of numbers, i.e., a permutation of 1,,,, which is the preorder traversal list of. The next line contains a list of numbers, i.e., a permutation of 1,,,, which is the inorder traversal list of the same. Two neighboring node id numbers in these lists have a single space between them. Note that a unique binary tree is always constructed from these preorder and inorder traversal lists. Output Your program is to write to standard output. Print exactly one line for each test case. The line should contain a permutation of numbers of 1,,,, which is the same as the postorder traversal list of. The following shows sample input and output for two test cases. Sample Input Output for the Sample Input ICPC 013 Problem L: Tree

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

- 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

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

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

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

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

슬라이드 제목 없음

슬라이드 제목 없음 Chapter 5: TREES Trees Trees Def) a tree is finite set of one or more nodes such that 1) there is a special node (root) 2) remaining nodes are partitioned into n 0 disjoint trees T 1,T 2,,T n where each

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

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

#Ȳ¿ë¼®

#Ȳ¿ë¼® 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

chap 5: Trees

chap 5: Trees 5. Threaded Binary Tree 기본개념 n 개의노드를갖는이진트리에는 2n 개의링크가존재 2n 개의링크중에 n + 1 개의링크값은 null Null 링크를다른노드에대한포인터로대체 Threads Thread 의이용 ptr left_child = NULL 일경우, ptr left_child 를 ptr 의 inorder predecessor 를가리키도록변경

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

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

Microsoft PowerPoint - CHAP-03 [호환 모드]

Microsoft PowerPoint - CHAP-03 [호환 모드] 컴퓨터구성 Lecture Series #4 Chapter 3: Data Representation Spring, 2013 컴퓨터구성 : Spring, 2013: No. 4-1 Data Types Introduction This chapter presents data types used in computers for representing diverse numbers

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

<B3EDB9AEC1FD5F3235C1FD2E687770>

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

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

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

歯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

¹Ìµå¹Ì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

<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

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

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

More information

<B1E2C8B9BEC828BFCFBCBAC1F7C0FC29322E687770>

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

More information

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

Stage 2 First Phonics

Stage 2 First Phonics ORT Stage 2 First Phonics The Big Egg What could the big egg be? What are the characters doing? What do you think the story will be about? (큰 달걀은 무엇일까요? 등장인물들은 지금 무엇을 하고 있는 걸까요? 책은 어떤 내용일 것 같나요?) 대해 칭찬해

More information

슬라이드 제목 없음

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

More information

본문01

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

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

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

<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

민속지_이건욱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

강의10

강의10 Computer Programming gdb and awk 12 th Lecture 김현철컴퓨터공학부서울대학교 순서 C Compiler and Linker 보충 Static vs Shared Libraries ( 계속 ) gdb awk Q&A Shared vs Static Libraries ( 계속 ) Advantage of Using Libraries Reduced

More information

182 동북아역사논총 42호 금융정책이 조선에 어떤 영향을 미쳤는지를 살펴보고자 한다. 일제 대외금융 정책의 기본원칙은 각 식민지와 점령지마다 별도의 발권은행을 수립하여 일본 은행권이 아닌 각 지역 통화를 발행케 한 점에 있다. 이들 통화는 일본은행권 과 等 價 로 연

182 동북아역사논총 42호 금융정책이 조선에 어떤 영향을 미쳤는지를 살펴보고자 한다. 일제 대외금융 정책의 기본원칙은 각 식민지와 점령지마다 별도의 발권은행을 수립하여 일본 은행권이 아닌 각 지역 통화를 발행케 한 점에 있다. 이들 통화는 일본은행권 과 等 價 로 연 越 境 하는 화폐, 분열되는 제국 - 滿 洲 國 幣 의 조선 유입 실태를 중심으로 181 越 境 하는 화폐, 분열되는 제국 - 滿 洲 國 幣 의 조선 유입 실태를 중심으로 - 조명근 고려대학교 BK21+ 한국사학 미래인재 양성사업단 연구교수 Ⅰ. 머리말 근대 국민국가는 대내적으로는 특정하게 구획된 영토에 대한 배타적 지배와 대외적 자주성을 본질로 하는데, 그

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

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

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

<32B1B3BDC32E687770>

<32B1B3BDC32E687770> 008년도 상반기 제회 한 국 어 능 력 시 험 The th Test of Proficiency in Korean 일반 한국어(S-TOPIK 중급(Intermediate A 교시 이해 ( 듣기, 읽기 수험번호(Registration No. 이 름 (Name 한국어(Korean 영 어(English 유 의 사 항 Information. 시험 시작 지시가 있을

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

2007 학년도 하반기 졸업작품 아무도 모른다 (Nobody Knows) 얄리, 보마빼 (AIi, Bomaye) 외계인간 ( 外 界 人 間 ) 한국예술종합학교 연극원 극작과 예술전문사 2005523003 안 재 승

2007 학년도 하반기 졸업작품 아무도 모른다 (Nobody Knows) 얄리, 보마빼 (AIi, Bomaye) 외계인간 ( 外 界 人 間 ) 한국예술종합학교 연극원 극작과 예술전문사 2005523003 안 재 승 2007 학년도 하반기 졸업작품 아무도 모른다 (Nobody Knows) 알리, 보마예 (Ali, Bomaye) 외계인간 ( 外 界 A 間 ) 원 사 3 승 극 문 연 전 재 E 숨 } 닮 런 예 m 안 합 과 ; 조 O 자 숨 그, 예 시 국 하 2007 학년도 하반기 졸업작품 아무도 모른다 (Nobody Knows) 얄리, 보마빼 (AIi, Bomaye)

More information

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

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

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

<C7D1B9CEC1B7BEEEB9AEC7D03631C1FD28C3D6C1BE292E687770>

<C7D1B9CEC1B7BEEEB9AEC7D03631C1FD28C3D6C1BE292E687770> 설화에 나타난 사회구조와 그 의미 23) 박유미 * 차례 Ⅰ. 문제제기 Ⅱ. 서사 내부의 사회구조 Ⅲ. 사회문제의 해결방식과 그 의미 Ⅳ. 설화와 후대전승과의 상관관계 Ⅴ. 결론 국문초록 삼국유사 의 조에는 왕거인 이야기와 거타지 이야기가 하나의 설화에 묶여 전하고 있는데, 두 이야기는 해결구조에서 차이를

More information

TEL:02)861-1175, FAX:02)861-1176 , REAL-TIME,, ( ) CUSTOMER. CUSTOMER REAL TIME CUSTOMER D/B RF HANDY TEMINAL RF, RF (AP-3020) : LAN-S (N-1000) : LAN (TCP/IP) RF (PPT-2740) : RF (,RF ) : (CL-201)

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

Mary Beth Tatham Norbert Sternat 1:00 PM Al Weyer 4:00 PM Christine Buerger MASS PARTICIPATION: Families are encouraged to participate during the break as well. Altar Servers are needed! Please contact

More information

우리들이 일반적으로 기호

우리들이 일반적으로 기호 일본지방자치체( 都 道 府 縣 )의 웹사이트상에서 심벌마크와 캐릭터의 활용에 관한 연구 A Study on the Application of Japanese Local Self-Government's Symbol Mark and Character on Web. 나가오카조형대학( 長 岡 造 形 大 學 ) 대학원 조형연구과 김 봉 수 (Kim Bong Su) 193

More information

_KF_Bulletin webcopy

_KF_Bulletin webcopy 1/6 1/13 1/20 1/27 -, /,, /,, /, Pursuing Truth Responding in Worship Marked by Love Living the Gospel 20 20 Bible In A Year: Creation & God s Characters : Genesis 1:1-31 Pastor Ken Wytsma [ ] Discussion

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

<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

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

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

슬라이드 제목 없음

슬라이드 제목 없음 물리화학 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

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

204 205

204 205 -Road Traffic Crime and Emergency Evacuation - 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 Abstract Road Traffic Crime

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

ACM International Collegiate Programming Contest

ACM International Collegiate Programming Contest 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

More information

Chapter 4. LISTS

Chapter 4. LISTS 연결리스트의응용 류관희 충북대학교 1 체인연산 체인을역순으로만드는 (inverting) 연산 3 개의포인터를적절히이용하여제자리 (in place) 에서문제를해결 typedef struct listnode *listpointer; typedef struct listnode { char data; listpointer link; ; 2 체인연산 체인을역순으로만드는

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

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA 방송통신연구 2011년 봄호 연구논문 64 98 PD수첩 관련 판례에서 보이는 사법부의 사실성에 대한 인식의 차이 연구* 1)2) 이승선 충남대학교 언론정보학과 부교수** Contents 1. 문제제기와 연구문제 2. 공적인물에 대한 명예훼손 보도의 면책 법리 3. 분석결과의 논의 4. 마무리 본 이른바 PD수첩 광우병 편 에 대해 다양한 법적 대응이 이뤄졌다.

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

H3050(aap)

H3050(aap) USB Windows 7/ Vista 2 Windows XP English 1 2 3 4 Installation A. Headset B. Transmitter C. USB charging cable D. 3.5mm to USB audio cable - Before using the headset needs to be fully charged. -Connect

More information

INDUCTION MOTOR 표지.gul

INDUCTION MOTOR 표지.gul INDUCTION MOTOR NEW HSERIES INDUCTION MOTOR HEX Series LEAD WIRE TYPE w IH 1PHASE 4 POLE PERFORMANCE DATA (DUTY : CONTINUOUS) MOTOR TYPE IHPF10 IHPF11 IHPF IHPF22 IHPFN1U IHPFN2C OUTPUT 4 VOLTAGE

More information

大学4年生の正社員内定要因に関する実証分析

大学4年生の正社員内定要因に関する実証分析 190 2016 JEL Classification Number J24, I21, J20 Key Words JILPT 2011 1 190 Empirical Evidence on the Determinants of Success in Full-Time Job-Search for Japanese University Students By Hiroko ARAKI and

More information

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

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

More information

10주차.key

10주차.key 10, Process synchronization (concurrently) ( ) => critical section ( ) / =>, A, B / Race condition int counter; Process A { counter++; } Process B { counter ;.. } counter++ register1 = counter register1

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

<BABBB9AE2E687770>

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

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

<32303131C7CFB9DDB1E22028C6EDC1FD292E687770>

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

More information

2017.09 Vol.255 C O N T E N T S 02 06 26 58 63 78 99 104 116 120 122 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 2017.9 3 4 2017.9 6 2017.9 7 8 2017.9 13 0 13 1,007 3 1,004 (100.0) (0.0) (100.0)

More information

Microsoft PowerPoint - Freebairn, John_ppt

Microsoft PowerPoint - Freebairn, John_ppt Tax Mix Change John Freebairn Outline General idea of a tax mix change Some detailed policy options Importance of casting assessment in the context of a small open economy Economic effects of a tax mix

More information

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

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

More information

REVERSIBLE MOTOR 표지.gul

REVERSIBLE MOTOR 표지.gul REVERSIBLE MOTOR NEW H-SERIES REVERSIBLE MOTOR H-EX Series LEAD WIRE w RH 1PHASE 4 POLE PERFORMANCE DATA (DUTY : Min.) MOTOR OUTPUT VOLTAGE (V) FREQUENCY (Hz) INPUT CURRENT (ma) RATING SPEED (rpm) STARTING

More information

04_오픈지엘API.key

04_오픈지엘API.key 4. API. API. API..,.. 1 ,, ISO/IEC JTC1/SC24, Working Group ISO " (Architecture) " (API, Application Program Interface) " (Metafile and Interface) " (Language Binding) " (Validation Testing and Registration)"

More information

#KM-250(PB)

#KM-250(PB) PARTS BOOK FOR 1-NEEDLE, STRAIGHT LOCK-STITCH MACHINE SERIES KM-250AU-7S KM-250AU-7N KM-250A-7S KM-250A-7N KM-250B-7S KM-250B-7N KM-250BH-7S KM-250BH-7N KM-250BL-7S KM-250BL-7N KM-250AU KM-250A KM-250B

More information

untitled

untitled www.hyundaielevator.co.kr 2014 vol.239 07+08 BIFC(Busan International Finance Center) Korea[600mpm] www.hyundaielevator.co.kr 2014 vol.239 07 + 08 People Harmony Inside Space Ele-Cop (BIFC)[600mpm] 04-05

More information

<B3EDB9AEC1FD5F3235C1FD2E687770>

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

More information

김기남_ATDC2016_160620_[키노트].key

김기남_ATDC2016_160620_[키노트].key metatron Enterprise Big Data SKT Metatron/Big Data Big Data Big Data... metatron Ready to Enterprise Big Data Big Data Big Data Big Data?? Data Raw. CRM SCM MES TCO Data & Store & Processing Computational

More information

1..

1.. Volume 12, Number 1, 6~16, Factors influencing consultation time and waiting time of ambulatory patients in a tertiary teaching hospital Jee-In Hwang College of Nursing Science, Kyung Hee University :

More information

Á¶´öÈñ_0304_final.hwp

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

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

02-19~-44-하이퍼루프다시

02-19~-44-하이퍼루프다시 Understanding the Value Engineering of Hyperloop Currently, we are getting ready for the 4 th transport revolution due to the appearance of new modes of transportation that are largely classified into

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

#중등독해1-1단원(8~35)학

#중등독해1-1단원(8~35)학 Life Unit 1 Unit 2 Unit 3 Unit 4 Food Pets Camping Travel Unit 1 Food Before You Read Pre-reading Questions 1. Do you know what you should or shouldn t do at a traditional Chinese dinner? 2. Do you think

More information

chap01_time_complexity.key

chap01_time_complexity.key 1 : (resource),,, 2 (time complexity),,, (worst-case analysis) (average-case analysis) 3 (Asymptotic) n growth rate Θ-, Ο- ( ) 4 : n data, n/2. int sample( int data[], int n ) { int k = n/2 ; return data[k]

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

<31325FB1E8B0E6BCBA2E687770>

<31325FB1E8B0E6BCBA2E687770> 88 / 한국전산유체공학회지 제15권, 제1호, pp.88-94, 2010. 3 관내 유동 해석을 위한 웹기반 자바 프로그램 개발 김 경 성, 1 박 종 천 *2 DEVELOPMENT OF WEB-BASED JAVA PROGRAM FOR NUMERICAL ANALYSIS OF PIPE FLOW K.S. Kim 1 and J.C. Park *2 In general,

More information

4. #include <stdio.h> #include <stdlib.h> int main() { functiona(); } void functiona() { printf("hihi\n"); } warning: conflicting types for functiona

4. #include <stdio.h> #include <stdlib.h> int main() { functiona(); } void functiona() { printf(hihi\n); } warning: conflicting types for functiona 이름 : 학번 : A. True or False: 각각항목마다 True 인지 False 인지적으세요. 1. (Python:) randint 함수를사용하려면, random 모듈을 import 해야한다. 2. (Python:) '' (single quote) 는한글자를표현할때, (double quote) 는문자열을표현할때사용한다. B. 다음에러를수정하는방법을적으세요.

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

Product A4

Product A4 2 APTIV Film Versatility and Performance APTIV Film Versatility and Performance 3 4 APTIV Film Versatility and Performance APTIV Film Versatility and Performance 5 PI Increasing Performance PES PPSU PSU

More information

Can032.hwp

Can032.hwp Chromosomal Alterations in Hepatocellular Carcinoma Cell Lines Detected by Comparative Genomic Hybridization Sang Jin Park 1, Mahn Joon Ha, Ph.D. 1, Hugh Chul Kim, M.D. 2 and Hyon Ju Kim, M.D. 1 1 Laboratory

More information

Microsoft PowerPoint - ch10 - 이진트리, AVL 트리, 트리 응용 pm0600

Microsoft PowerPoint - ch10 - 이진트리, AVL 트리, 트리 응용 pm0600 균형이진탐색트리 -VL Tree delson, Velskii, Landis에의해 1962년에제안됨 VL trees are balanced n VL Tree is a binary search tree such that for every internal node v of T, the heights of the children of v can differ by at

More information

목 차 1. 서론 1.1. 문제 제기 및 연구 목적 1.2. 연구 대상 및 연구 방법 2. 교양 다큐 프로그램 이해 3. 롤랑바르트 신화론에 대한 이해 3.1. 기호학과 그 에 대하여 3.2. 롤랑바르트 신화 이론 고찰 4. 분석 내용 4.1. 세계테마기행 에 대한 기

목 차 1. 서론 1.1. 문제 제기 및 연구 목적 1.2. 연구 대상 및 연구 방법 2. 교양 다큐 프로그램 이해 3. 롤랑바르트 신화론에 대한 이해 3.1. 기호학과 그 에 대하여 3.2. 롤랑바르트 신화 이론 고찰 4. 분석 내용 4.1. 세계테마기행 에 대한 기 교양 다큐 프로그램 타이틀과 심벌 로고에 대한 기호학적 연구 Study on Semiotic Approach to Title & Symbollogo in Culture Documentaries TV Program 주저자 민 신 기 Min Shin-ki 백석대학교 디자인영상학부 조교수 Professor of Baekseok University skmin@bu.ac.kr

More information

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

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

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

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

비트와바이트 비트와바이트 비트 (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

<3136C1FD31C8A320C5EBC7D52E687770>

<3136C1FD31C8A320C5EBC7D52E687770> 고속도로건설에 따른 지역간 접근성 변화분석 A study on the impact of new highway construction on regional accessibility The purpose of this is to analyse the interregional accessibility changes due to highway construction.

More information

, ( ) 1) *.. I. (batch). (production planning). (downstream stage) (stockout).... (endangered). (utilization). *

, ( ) 1) *.. I. (batch). (production planning). (downstream stage) (stockout).... (endangered). (utilization). * , 40 12 (2006 6) 1) *.. I. (batch). (production planning). (downstream stage) (stockout).... (endangered). (utilization). * 40, 40 12 (EPQ; economic production quantity). (setup cost) (setup time) Bradley

More information

<B7CEC4C3B8AEC6BCC0CEB9AEC7D0322832303039B3E23130BFF9292E687770>

<B7CEC4C3B8AEC6BCC0CEB9AEC7D0322832303039B3E23130BFF9292E687770> 로컬리티 인문학 2, 2009. 10, 257~285쪽 좌절된 세계화와 로컬리티 - 1960년대 한국영화와 재외한인 양 인 실* 50) 국문초록 세계화 로컬리티는 특정장소나 경계를 지칭하는 것이 아니라 관계와 시대에 따 라 유동적으로 변화하는 개념이다. 1960년대 한국영화는 유례없는 변화를 맞이하고 있었다. 그 중 가장 특이할 만한 사실은 미국과 일본의 영화계에서

More information