업데이트 :: 2018.08.15
문제
Counting Elements > PermCheck Check whether array A is a permutation.
코드
첫 번째 풀이
import java.util.*; // you can write to stdout for debugging purposes, e.g. // System.out.println("this is a debug message"); class Solution { public int solution(int[] A) { // [배열의 순열을 파악하는 문제] // A의 길이 1~10000000000 (충분히큰수) // N의 크기 1~10000000000 (층븐히큰수) // => 배열이 반드시 1부터 시작하나 ? 아니라고 가정 // == Exception == if(A == null || A.length == 1) { return 1; } Arrays.sort(A); for(int i=1; i<A.length; i++) { if(A[i] != A[i-1] + 1) { return 0; } } return 1; } }
두 번째 풀이
import java.util.*; // you can write to stdout for debugging purposes, e.g. // System.out.println("this is a debug message"); class Solution { public int solution(int[] A) { // [배열의 순열을 파악하는 문제] // A의 길이 1~10000000000 (충분히큰수) // N의 크기 1~10000000000 (층븐히큰수) // => 배열이 반드시 1부터 시작 // == Exception == if(A == null) return 0; Arrays.sort(A); if(A[0] != 1) return 0; for(int i=1; i<A.length; i++) { if(A[i] != A[i-1] + 1) { return 0; } } return 1; } }
결과
1차 66%
- 부정확
- extreme_min_max (single element with minimal/maximal value)
- single (single element)
- double (two elements)
- permutations_of_ranges (permutations of sets like [2..100] for which the anwsers should be false)
- 배열이 반드시 1부터 시작해야하는 것을 간과
2차 100%
학습
없음
Created by MoonsCoding
e-mail :: jm921106@gmail.com
반응형
'CS > 코딜리티' 카테고리의 다른 글
문제 // Codility // Prefix Sum // PassingCars (0) | 2018.08.19 |
---|---|
문제 // Codility // Counting Elements // MissingInteger (0) | 2018.08.19 |
문제 // Codility // Counting Elements // MaxCounters // (성능부족) (0) | 2018.08.17 |
문제 // Codility // Counting Elements // FrogRiverOne (0) | 2018.08.16 |
문제 // Codility // Time Complexity // TapeEquilibrium (0) | 2018.08.15 |