Coder Social home page Coder Social logo

BOJ 2003 about fastcampus HOT 7 CLOSED

rhs0266 avatar rhs0266 commented on July 17, 2024
BOJ 2003

from fastcampus.

Comments (7)

java-saeng avatar java-saeng commented on July 17, 2024 1

아하,, 반례 감사합니다!!
반례 기반으로 다시 이해해보겠습니다

from fastcampus.

rhs0266 avatar rhs0266 commented on July 17, 2024

전체 코드를 봐야 더 자세히 알 수 있을 것 같네요. + 2202번이 아니라 2003번 문제 같은데 맞나요?

from fastcampus.

java-saeng avatar java-saeng commented on July 17, 2024

죄송합니다 2003번입니다

public class BOJ2003 {
    static int atoi(String str) {
        return Integer.parseInt(str);
    }
    static int N, M;
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st = new StringTokenizer(br.readLine());

        N = atoi(st.nextToken());
        M = atoi(st.nextToken());

        int arr[] = new int[N];

        st = new StringTokenizer(br.readLine());

        for (int i = 0; i < N; i++) {
            arr[i] = atoi(st.nextToken());
        }

        int s = 0, e = 0, sum = 0, cnt = 0;
   ///////////////////////////////////////////////맞은부분
        while (true) {


            System.out.println(s + " " + e);
            if(sum >= M){
                sum -= arr[s];
                s++;
            }
            else if(e == N){
                break;
            }

            else{
                sum += arr[e++];
            }

            if(sum == M){
                cnt++;
            }
            //왜 e == N일떄 멈춰도되나?
            //e가 잇는상태에서 s가 계속 가면서 답이 될 수 있지않을까?
            //절대 아니다. 왜냐하면 이미 Sum보다 작으면서 e == N이면
            //s가 늘어난다하면 당연히 뺄텐데 여기서 이미 sum보다 작은데 뺴면 더 작아지니까 답이 안됨 어차피

        }
        ////////////////////////////////////////틀린 것
        /*
        int s = 0, e = 0, sum = 0, cnt = 0;
        while (true) {

//            System.out.println(s + " " + e);
  
            if(e == N) break;

            if(sum >= M){
                sum -= arr[s];
                s++;
            }
            else {
                sum += arr[e++];
            }

            if(sum == M){
                cnt++;
            }
        }
         */
        System.out.println(cnt);
    }
}
```
`

입니다. 
둘의 차이는 틀린 부분을 봤을 때, e == N일 때 break해줍니다.
그렇다면 당연히 뒷 부분들은 e != N일 때, 즉 N보다 작을 때 입니다.

맞은 부분은 if문에서 걸러주는데 이게 무슨 차이가 있는 것 같은데 명확히 얘기를 못하겠습니다. 
그래서 아직 덜 이해가 됐다라고 생각이 들었습니다.

+ 
이렇게 범위 나누는 것이 문제마다 당연하게 다를 텐데 혹시 선생님은 어떤 식으로 생각하시고
푸시는지 궁금합니다

from fastcampus.

rhs0266 avatar rhs0266 commented on July 17, 2024

...? 위에도 맞는데 System.out.println(s + " " + e); 을 지우고 내셔야죠.

from fastcampus.

java-saeng avatar java-saeng commented on July 17, 2024
  1. 맞은 것

image

  1. 틀린 것

image

입니다,,,

위에서 했던 질문이 아직까지 이해가 되질 않습니다.

from fastcampus.

rhs0266 avatar rhs0266 commented on July 17, 2024

아하 그렇군요! 다시 볼게요!

from fastcampus.

rhs0266 avatar rhs0266 commented on July 17, 2024
4 4
1 1 1 2

틀린 코드에 대한 반례입니다.

from fastcampus.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.