tony9402

[백준 1806] 부분합 본문

알고리즘/Baekjoon Online Judge

[백준 1806] 부분합

ssu_gongdoli 2018. 10. 20. 21:09
반응형

1806번 부분합



이 문제는 투 포인터 문제로 실수 없이 코딩하면 쉽게 맞는 문제이다. 하지만 난 폰코딩을 한 문제라 실수가 좀 많았다.


알고리즘 이름대로 투 포인터(두 군데를 잡고) 쭈욱 보면 된다.


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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//폰코딩
#include<iostream>
#include<vector>
 
using namespace std;
 
typedef long long ll;
vector<ll> vc;
 
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);cout.tie(0);
    ll n,k,input;
    cin >> n >> k;
    for(int i=0;i<n;i++)
    {
        cin>>input;
        vc.push_back(input);
    }
    
    int left = 0;
    int right = 0;
    ll sum=vc[0];
    int ans=100005;
    
    while(right<=vc.size())
    {
        if(sum>=k)
        {
            if(ans>right-left+1)
            {
                ans=right-left+1;
            }
            sum-=vc[left++];
        }
        else
        {
            sum+=vc[++right];
        }
    }
    if(ans==100005)ans=0;
    cout<<ans;
}
cs


반응형

'알고리즘 > Baekjoon Online Judge' 카테고리의 다른 글

[백준 12101] 1,2,3 더하기 2  (0) 2018.11.07
[백준 9095] 1, 2, 3 더하기  (0) 2018.11.07
[백준 5656] 비교 연산자  (0) 2018.10.20
[백준 1182] 부분집합의 합  (0) 2018.10.20
[백준 11657] 타임머신  (0) 2018.08.31
Comments