forked from TARANG0503/DSA-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheven_house.cpp
46 lines (45 loc) · 812 Bytes
/
even_house.cpp
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
45
46
#include<iostream>
#include<math.h>
using namespace std;
int main()
{
int t;
cin>>t;
int i=0;
while(i<t)
{
int n;
cin>>n;
string A[n];
for(int i=0;i<n;i++)
{
cin>>A[i];
}
int add=0;
for(int i=0;i<n;i++)
{
if(A[i]=="0")
{
bool t=true;
int min;
for(int j=0;j<n&&A[j]!="0";j++)
{
if(t)
{
min=abs(j-i);
t=false;
}
cout<<j;
if(min>abs(j-i))
{
min=abs(j-i);
cout<<min<<"ff";
}
}
add=add+min;
}
}
cout<<"case # "<<i+1<<": "<<add;
i++;
}
}