蓝桥杯-01小游戏

简单的模拟关键在于怎么降低时间复杂度

20%(for循环时间复杂度高)

复制代码
#include <iostream>
using namespace std;
int main()
{
  int n,q;
  cin>>n>>q;
  string s;
  cin>>s;
  int t,t1;
  while(q--)
  {
  	cin>>t;
    if(t==1)
      cout << s.find('1')+1 << endl;
  	else
  		{
		  cin>>t1;
		  if(s[t1-1]=='0')
		  s[t1-1]='1';
		  else
		  s[t1-1]='0';
		}
    }
  return 0;
}

100%

复制代码
#include <iostream>
using namespace std;
int main()
{
  int n,t;
  cin >> n >> t;
  string s;
  cin >> s;
  while(t--){
    int a;
    cin >> a;
    if(a==1){
      cout << s.find('1')+1 << endl;
    }else{
      int b;
      cin >> b;
      if(s[b-1]=='1')
        s[b-1]='0';
      else
        s[b-1]='1';
    }
  }
  return 0;
}
相关推荐
算AI3 小时前
人工智能+牙科:临床应用中的几个问题
人工智能·算法
懒羊羊大王&4 小时前
模版进阶(沉淀中)
c++
owde5 小时前
顺序容器 -list双向链表
数据结构·c++·链表·list
GalaxyPokemon5 小时前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++
W_chuanqi5 小时前
安装 Microsoft Visual C++ Build Tools
开发语言·c++·microsoft
hyshhhh5 小时前
【算法岗面试题】深度学习中如何防止过拟合?
网络·人工智能·深度学习·神经网络·算法·计算机视觉
tadus_zeng6 小时前
Windows C++ 排查死锁
c++·windows
EverestVIP6 小时前
VS中动态库(外部库)导出与使用
开发语言·c++·windows
杉之6 小时前
选择排序笔记
java·算法·排序算法
Naive_76 小时前
蓝桥杯准备(前缀和差分)
java·职场和发展·蓝桥杯