20207번: 달력

 수현이는 일년의 날짜가 1일부터 365일로 표시되어있는 달력을 가지고있다. 수현이는 너무나도 계획적인 사람이라 올 해 일정을 모두 계획해서 달력에 표시해놨다.  여름이 거의 끝나가자 장

www.acmicpc.net

 

 

 


 

 

 

  • 풀이

 

크기가 366까지 되있는 array 배열에 입력의 시작을 1, 끝을 -1로 초기화 시켜줍니다.

 

1. 반복문을 돌며 연결되어 있는 시작과 끝은 시작 인덱스만 초기화 시켜주며 최대 높이만 구해줍니다.

2. 끝이 발견되면 answer에 직사각형의 최대높이*길이를 통해 구해주고 변수를 0으로 초기화 시킵니다.

위의 작업을 1년인 365일의 +1일까지 작업해줍니다. 

 

  • 코드

 

import java.io.IOException;
import java.io.InputStream;
import java.util.*;

public class Main {
	static int answer;

	public static void main(String[] args) throws Exception {
		SetData();
		System.out.println(answer);
	}

	// 데이터
	private static void SetData() throws Exception {
		InputReader in = new InputReader(System.in);

		answer = 0;
		int N = in.nextInt();
		int[] array = new int[367];
		for (int i = 0; i < N; i++) {
			array[in.nextInt()]++;
			array[in.nextInt()+ 1]--;
		}
		
		int start = 0;
		int height = 0;
		int connect = 0;
		for (int i = 0; i <= 366; i++) {
			connect += array[i];		// 연결이 더이상 안될 때 0이될 때를 체크해주기 위
			height = Math.max(height, connect);	// height
			
			if (start == 0 && connect != 0) {
				start = i;
			} else if (start != 0 && connect == 0) {
				answer += (i - start) * height;
				start = 0;
				height = 0;
			}
		}

	}
}

class InputReader {
	private final InputStream stream;
	private final byte[] buf = new byte[8192];
	private int curChar, snumChars;

	public InputReader(InputStream st) {
		this.stream = st;
	}

	public int read() {
		if (snumChars == -1)
			throw new InputMismatchException();
		if (curChar >= snumChars) {
			curChar = 0;
			try {
				snumChars = stream.read(buf);
			} catch (IOException e) {
				throw new InputMismatchException();
			}
			if (snumChars <= 0)
				return -1;
		}
		return buf[curChar++];
	}

	public int nextInt() {
		int c = read();
		while (isSpaceChar(c)) {
			c = read();
		}
		int sgn = 1;
		if (c == '-') {
			sgn = -1;
			c = read();
		}
		int res = 0;
		do {
			res *= 10;
			res += c - '0';
			c = read();
		} while (!isSpaceChar(c));
		return res * sgn;
	}

	public long nextLong() {
		int c = read();
		while (isSpaceChar(c)) {
			c = read();
		}
		int sgn = 1;
		if (c == '-') {
			sgn = -1;
			c = read();
		}
		long res = 0;
		do {
			res *= 10;
			res += c - '0';
			c = read();
		} while (!isSpaceChar(c));
		return res * sgn;
	}

	public int[] nextIntArray(int n) {
		int a[] = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = nextInt();
		}
		return a;
	}

	public String nextLine() {
		int c = read();
		while (isSpaceChar(c))
			c = read();
		StringBuilder res = new StringBuilder();
		do {
			res.appendCodePoint(c);
			c = read();
		} while (!isEndOfLine(c));
		return res.toString();
	}

	public boolean isSpaceChar(int c) {
		return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
	}

	private boolean isEndOfLine(int c) {
		return c == '\n' || c == '\r' || c == -1;
	}
}

+ Recent posts