-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPREFONES.cpp
136 lines (111 loc) · 2.23 KB
/
PREFONES.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#include <iostream>
#include <cstring>
#include <unordered_map>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
string str;
cin>>str;
//1st part
bool flag=0;
int cnt=0;
int i=0;
if(str[0]=='1')
{
flag=1;
for(i ;i<str.length();i++)
{
if(str[i]=='1')
cnt++;
else
break;
}
}
int count=0;
int maxi2=0;
if(flag)
{
for(i;i<str.length();i++)
{
if(str[i]=='1')
{
count++;
maxi2=max(count,maxi2);
}else
{
maxi2=max(count,maxi2);
count=0;
}
}
}
if(flag)
{
cout<<cnt+maxi2<<endl;
continue;
}
int maxi=0;
int count2=0;
for(int i=0;i<str.length();i++)
{
if(str[i]=='1')
{
count2++;
maxi=max(count2,maxi);
}else
{
maxi=max(count2,maxi);
count2=0;
}
}
cout<<maxi<<endl;
// if(count2!=0)
// maxi=max(maxi,count2);
// int cnt=0;
// for(int i=0;i<str.length();i++)
// {
// if(str[i]=='1')
// cnt++;
// else
// {
// if(cnt!=0)
// {
// map[cnt]++;
// }
// cnt=0;
// }
// }
// if(cnt!=0)
// map[cnt]++;
// //if size is 0
// if(map.size()==0)
// {
// cout<<"0"<<endl;
// continue;
// }
// //first and second
// int first=0;
// int second=0;
// for(auto it:map)
// {
// if(it.first>=first)
// {
// if(it.second>=2)
// {
// first=it.first;
// second=it.first;
// }else
// first=it.first;
// }
// else if(it.first>=second)
// second=it.first;
// }
// cout<<first+second<<endl;
}
return 0;
}