#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
vector<int>v[101];
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
int N,cnt=0; cin>>N;
for(int i=0; i<N; i++){
int a,b; cin>>a>>b;
v[a].push_back(b);
}
for(int i=1; i<=10; i++){
if(v[i].size()<=1) continue;
int first=v[i][0];
for(int k=1; k<v[i].size(); k++){
if(v[i][k]!=first){
cnt++;
first=v[i][k];
}
}
}
cout<<cnt;
}
'Algorithm ๐ง๐ปโ๐ป > ๋ฐฑ์ค(BOJ)' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[๋ฐฑ์ค,c++] 14496๋ฒ - ๊ทธ๋,๊ทธ๋จธ๊ฐ ๋์ด (0) | 2021.11.07 |
---|---|
[๋ฐฑ์ค,c++] 14495๋ฒ - ํผ๋ณด๋์น ๋น์ค๋ฌด๋ฆฌํ ์์ด (0) | 2021.11.07 |
[๋ฐฑ์ค,c++] 14490๋ฒ - ๋ฐฑ๋์ด (0) | 2021.11.07 |
[๋ฐฑ์ค,c++] 14425๋ฒ - ๋ฌธ์์ด ์งํฉ (0) | 2021.11.07 |
[๋ฐฑ์ค,c++] 14391๋ฒ - ์ข ์ด ์กฐ๊ฐ (0) | 2021.11.07 |
[๋ฐฑ์ค,c++] 1431๋ฒ - ์๋ฆฌ์ผ ๋ฒํธ (0) | 2021.11.07 |
๋๊ธ