首页 > TAG信息列表 > 1936

poj 1936(水题)

#include<iostream> #include<cstring> using namespace std; int main(){ char a[100005],b[100005]; int i,j,len_a,len_b; while(scanf("%s%s",a,b)==2){ len_a = strlen(a); len_b = strlen(b); j = 0;

LSTM之父Jürgen Schmidhuber评图灵

LSTM之父Jürgen Schmidhuber评图灵 来源 https://people.idsia.ch/~juergen/turing-oversold.html   图灵的贡献真的被夸大了吗? 「艾伦 · 图灵(Alan M. Turing)对计算机科学做出了某些重大贡献。然而,这些贡献的重要性和影响力往往被夸大了,以牺牲该领域先驱者的利益为代价。不

poj 1936(水题)

#include<iostream> #include<cstdio> #include<cstring> using namespace std; char s[100005],t[100005]; int main(){ while(scanf("%s%s",s,t)==2){ int i,j,lens = strlen(s),lent = strlen(t); for(i=0,j=0;i<lens&