Sirius6699 @ 2024-07-10 11:45:52
超级蒟蒻一个
我自己的思路很乱,有没有大佬帮调一下啊啊啊不想看题解
呃...说实话这题真不该是入门嘿嘿嘿
// #include <bits/stdc++.h>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <iostream>
#include <queue>
#include <vector>
#define coutdouble(a, b) cout << fixed << setprecision(a) << (b)
#define ll long long
#define endl '\n'
using namespace std;
const int N = 200 * 200 + 5;
const int INF = 0x3f3f3f;
const int INFS = -0x3f3f3f;
int x;
int a[N];
int cnt = 0, i = 1;
bool flag;
void solve()
{
cin >> x; // 先输入矩阵的第一个
flag = x, a[i]++, cnt++;
while (cin >> x)
{
if (flag == x) // 如果接下来的数字也一样
{
a[i]++; // 连续数字个数增加
cnt++; // 数字的总量增加
}
else
{
i++, cnt++; // 否则记录次数的数组下标增加
flag = !flag; // flag取反
a[i]++; // 新的数字个数增加
}
}
cout << sqrt(cnt) << " "; // 因为是总数n*n,所以总数开根就是n
for (int j = 1; j <= i; j++)
{
cout << a[i] << " ";
}
cout << endl;
}
signed main()
{
// freopen("../in_out/in.txt", "r", stdin);
// freopen("../in_out/out.txt", "w", stdout);
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr); // 关闭同步流
int t = 1;
// cin>>t;
while (t--)
{
solve();
}
return 0;
}
by queenbee @ 2024-07-10 11:53:43
有没有可能读入int就是错的
by a18981826590 @ 2024-07-10 12:01:43
@zhou125
#include<bits/stdc++.h>
using namespace std;
int a;
string s,t="0";
int main(){
while(getline(cin,s)) t+=s;
cout<<sqrt(t.size()-1);
for(int i=1;i<t.size();i++){
if(t[i]!=t[i-1]){
cout<<' '<<a;
a=0;
}
a++;
}
cout<<' '<<a;
return 0;
}