La 3942

# include<stdio.h>
# include<string.h>
# define maxnode 1000000
# define sigma_size 26
# define mod 20071207
int ch[maxnode][sigma_size];
int val[maxnode];
int sz;
int idx(char c)
{
return c-'a';
}
    void insert(char *s,int v)
{
int u=0,n=strlen(s);
for(int i=0;i<n;i++)
{
int c=idx(s[i]);
if(!ch[u][c])
{
memset(ch[sz],0,sizeof(ch[sz]));
val[sz]=0;
ch[u][c]=sz++;
}
u=ch[u][c];
}
val[u]=v;
}
char str[300020];
int d[300020],N;
int dp()

int j,i=0;
d[0]=1;
str[i]='x';
    for(i=0;str[i];i++)
{
      int u=0;
      for(j=1;j<=N;j++)
 { 
  int c=idx(str[i+j]);
  if(ch[u][c])
  {
              u=ch[u][c];
 if(val[u])
 d[i+j]=(d[j+i]+d[i])%mod;
  }
  else break;
 }
   }
   return d[N];
}


int main()
{
int c=0;
while(scanf("%s",str+1)!=EOF)
{  
c++;
memset(d,0,sizeof(d));
memset(val,0,sizeof(val));
memset(ch,0,sizeof(ch));
sz=1;
N=strlen(str+1);

 int i,j,s;
 scanf("%d",&s);
 char ss[103];
 for(i=0;i<s;i++)
 {
 scanf("%s",ss);
 insert(ss,1);
 }
 
 printf("Case %d: %d\n",c,dp());
}
return 0;
}
 
没不对。。。。。。。一开始  用dP    dp(i)=sum(dp(i+j));超时了。。。。。。。应该用递推式!!!!!!!!!!


一下是博主 Wall_F的代码

#include <iostream>
#include <cstring>
#include <cstdio>
using namespace std;


const int maxnode = 4010*100;
const int sigma_size = 26;
const int MAXN = 300010;
const int MOD = 20071027;


char str[MAXN];
int d[MAXN];


struct trie
{
int ch[maxnode][sigma_size];
int val[maxnode];
int sz;
int idx(char c) { return c - 'a';}
void init()
{
sz = 1;
memset(ch[0], 0, sizeof(ch[0]));
}
void insert(char *s, int v)
{
int u = 0, n = strlen(s);
for(int i = 0; i < n; i++)
{
int c = idx(s[i]);
if(!ch[u][c])
{
memset(ch[sz], 0, sizeof(ch[sz]));
val[sz] = 0;
ch[u][c] = sz++;
}
u = ch[u][c];
}
val[u] = v;
}
int find(char *s)
{
int u = 0;
for(int i = 0; s[i]; i++)
{
int c = idx(s[i]);
if(!ch[u][c]) return 0;
u = ch[u][c];
}
return val[u];
}
}Trie;


void read_case()
{
Trie.init();
int n;
scanf("%d", &n);
while(n--)
{
char temp[110];
scanf("%s", temp);
Trie.insert(temp, 1);
}
}


void solve()
{
read_case();
memset(d, 0, sizeof(d));
int len = strlen(str+1);
d[0] = 1, str[0] = 'x';
for(int i = 0; str[i]; i++)
{
int u = 0;
for(int j = 1; j <= len; j++)
{
int c = Trie.idx(str[i+j]);
u = Trie.ch[u][c];
if(!u) break;
else if(Trie.val[u] == 1)
{
d[i+j] += d[i];
if(d[i+j] >= MOD) d[i+j] %= MOD;
}
}
}
printf("%d\n", d[len]);
}


int main()
{
int times = 0;
while(~scanf("%s", str+1))
{
printf("Case %d: ", ++times);
solve();
}
return 0;
}


    
36 elements are distorted. Either the isoparametric angles are out of the suggested limits or the triangular or tetrahedral quality measure is bad. The elements have been identified in element set WarnElemDistorted. OUTPUT AT EXACT, PREDEFINED TIME POINTS WAS REQUESTED IN THIS STEP. IN ORDER TO WRITE OUTPUT AT EXACT TIME POINTS SPECIFIED, Abaqus MIGHT USE TIME INCREMENTS SMALLER THAN THE MINIMUM TIME INCREMENT ALLOWED IN THE STEP. IN ADDITION, THE NUMBER OF INCREMENTS REQUIRED TO COMPLETE THE STEP WILL IN GENERAL INCREASE. Output request v1 is not available for this type of analysis There are 3 unconnected regions in the model. Solver problem. Numerical singularity when processing node P1TEST-2-1.26 D.O.F. 1 ratio = 1.51839E+12. Solver problem. Numerical singularity when processing node P1TEST-2-1.26 D.O.F. 3 ratio = 475.054E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5 D.O.F. 1 ratio = 35.1420E+12 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5 D.O.F. 2 ratio = 13.4128E+12 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5 D.O.F. 3 ratio = 505.827E+12 . The system matrix has 23545 negative eigenvalues. Solver problem. Numerical singularity when processing node P1TEST-2-1.7740 D.O.F. 3 ratio = 11.7175E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.7796 D.O.F. 3 ratio = 6.59077E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.8404 D.O.F. 3 ratio = 97.0262E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.8405 D.O.F. 3 ratio = 9.91480E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.8985 D.O.F. 3 ratio = 59.2946E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.6684 D.O.F. 3 ratio = 39.0046E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.6230 D.O.F. 3 ratio = 8.48070E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.6287 D.O.F. 3 ratio = 35.8394E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.6802 D.O.F. 3 ratio = 30.7460E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.6803 D.O.F. 3 ratio = 7.32544E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.6891 D.O.F. 3 ratio = 12.6899E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.6892 D.O.F. 3 ratio = 13.1385E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.7441 D.O.F. 3 ratio = 5.43419E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.7442 D.O.F. 3 ratio = 16.5665E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.8398 D.O.F. 3 ratio = 17.9454E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.10450 D.O.F. 3 ratio = 11.3629E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.9243 D.O.F. 3 ratio = 8.34036E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.7478 D.O.F. 3 ratio = 20.6547E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.2863 D.O.F. 3 ratio = 32.3509E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.878 D.O.F. 3 ratio = 23.7521E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.2291 D.O.F. 3 ratio = 52.3054E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.7737 D.O.F. 3 ratio = 8.85549E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5072 D.O.F. 3 ratio = 16.5550E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5069 D.O.F. 3 ratio = 22.2438E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5086 D.O.F. 3 ratio = 19.5490E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5778 D.O.F. 3 ratio = 19.7793E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.4612 D.O.F. 3 ratio = 5.45237E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5074 D.O.F. 3 ratio = 49.5806E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5777 D.O.F. 3 ratio = 14.2473E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5075 D.O.F. 3 ratio = 4.96607E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5064 D.O.F. 3 ratio = 18.2234E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.4603 D.O.F. 3 ratio = 21.7391E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5070 D.O.F. 3 ratio = 14.6459E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5774 D.O.F. 3 ratio = 5.28532E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5779 D.O.F. 3 ratio = 110.232E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.4607 D.O.F. 3 ratio = 7.53169E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.3942 D.O.F. 3 ratio = 11.0816E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.4795 D.O.F. 3 ratio = 4.73811E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5404 D.O.F. 3 ratio = 14.4085E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.10493 D.O.F. 3 ratio = 6.04685E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.6902 D.O.F. 3 ratio = 17.6672E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.7482 D.O.F. 3 ratio = 18.0497E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.886 D.O.F. 3 ratio = 17.1849E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.6239 D.O.F. 3 ratio = 12.2502E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.2966 D.O.F. 3 ratio = 4.70437E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.1424 D.O.F. 3 ratio = 23.6393E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.1425 D.O.F. 3 ratio = 10.6345E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.7443 D.O.F. 3 ratio = 12.7344E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.821 D.O.F. 3 ratio = 15.0514E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.680 D.O.F. 3 ratio = 6.06589E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.462 D.O.F. 3 ratio = 9.54202E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.461 D.O.F. 3 ratio = 18.2187E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.460 D.O.F. 3 ratio = 4.74393E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.157 D.O.F. 3 ratio = 48.7365E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.101 D.O.F. 3 ratio = 6.62498E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.48 D.O.F. 3 ratio = 14.5672E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.4675 D.O.F. 3 ratio = 4.87958E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5209 D.O.F. 3 ratio = 9.43404E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5886 D.O.F. 3 ratio = 26.2999E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5885 D.O.F. 3 ratio = 19.2370E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5199 D.O.F. 3 ratio = 24.6083E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5887 D.O.F. 3 ratio = 5.57688E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.4679 D.O.F. 3 ratio = 6.70264E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5217 D.O.F. 3 ratio = 66.7249E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5200 D.O.F. 3 ratio = 42.9486E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5747 D.O.F. 3 ratio = 14.7032E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.3839 D.O.F. 3 ratio = 843.681E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5698 D.O.F. 3 ratio = 5.21315E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5379 D.O.F. 3 ratio = 57.7590E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.6279 D.O.F. 3 ratio = 8.43431E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.6964 D.O.F. 3 ratio = 5.63659E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.9656 D.O.F. 3 ratio = 646.432E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.745 D.O.F. 3 ratio = 16.4278E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.189 D.O.F. 3 ratio = 33.0501E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5970 D.O.F. 3 ratio = 10.5968E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5969 D.O.F. 3 ratio = 9.28691E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5264 D.O.F. 3 ratio = 5.18585E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.4640 D.O.F. 3 ratio = 5.42354E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5147 D.O.F. 3 ratio = 7.27317E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5265 D.O.F. 3 ratio = 366.833E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5858 D.O.F. 3 ratio = 13.9626E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5924 D.O.F. 3 ratio = 34.8631E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5861 D.O.F. 3 ratio = 7.67137E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5149 D.O.F. 3 ratio = 68.1263E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5857 D.O.F. 3 ratio = 13.5225E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5263 D.O.F. 3 ratio = 8.68280E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5144 D.O.F. 3 ratio = 9.98761E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.747 D.O.F. 3 ratio = 12.7017E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.8383 D.O.F. 3 ratio = 64.9370E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.6649 D.O.F. 3 ratio = 7.73570E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.193 D.O.F. 3 ratio = 17.5045E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.9225 D.O.F. 3 ratio = 4.70492E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.7365 D.O.F. 3 ratio = 12.1323E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.9286 D.O.F. 3 ratio = 10.4841E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5366 D.O.F. 3 ratio = 5.40483E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.3635 D.O.F. 3 ratio = 6.93097E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.1341 D.O.F. 3 ratio = 6.11203E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.1338 D.O.F. 3 ratio = 27.1885E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.851 D.O.F. 3 ratio = 23.8949E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.627 D.O.F. 3 ratio = 18.1590E+09 . Solver problem. Numerical singularity: the maximum number of numerical singularity checks messages printed for this increment has been reached. The output of these messages is supressed until the end of the increment to avoid potentially large increases in the system time needed to complete the analysis. Excessive distortion at a total of 302 integration points in solid (continuum) elements Solver problem. Numerical singularity when processing node P1TEST-2-1.26 D.O.F. 1 ratio = 1.51839E+12. Solver problem. Numerical singularity when processing node P1TEST-2-1.26 D.O.F. 3 ratio = 475.054E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5 D.O.F. 1 ratio = 35.1420E+12 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5 D.O.F. 2 ratio = 13.4128E+12 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5 D.O.F. 3 ratio = 505.827E+12 . The system matrix has 23735 negative eigenvalues. Solver problem. Numerical singularity when processing node P1TEST-2-1.8190 D.O.F. 3 ratio = 6.40877E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.3839 D.O.F. 3 ratio = 52.0487E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5362 D.O.F. 3 ratio = 12.4431E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5363 D.O.F. 3 ratio = 10.1116E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5364 D.O.F. 3 ratio = 52.3366E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5264 D.O.F. 3 ratio = 8.30372E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5351 D.O.F. 3 ratio = 4.84013E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5456 D.O.F. 3 ratio = 11.6060E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.6011 D.O.F. 3 ratio = 7.77439E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.6009 D.O.F. 3 ratio = 5.70545E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.4830 D.O.F. 3 ratio = 7.70129E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.8454 D.O.F. 3 ratio = 7.10202E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.1806 D.O.F. 3 ratio = 7.99413E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.1388 D.O.F. 3 ratio = 40.0582E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.6933 D.O.F. 3 ratio = 11.0363E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.2791 D.O.F. 3 ratio = 4.54802E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.2665 D.O.F. 3 ratio = 54.5387E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.2664 D.O.F. 3 ratio = 5.69178E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.1475 D.O.F. 3 ratio = 29.8249E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.6025 D.O.F. 3 ratio = 57.9842E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.2503 D.O.F. 3 ratio = 17.7218E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.1923 D.O.F. 3 ratio = 15.6029E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5 D.O.F. 1 ratio = 11.9818E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5 D.O.F. 2 ratio = 12.9509E+12 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5 D.O.F. 3 ratio = 142.872E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.4878 D.O.F. 3 ratio = 4.90865E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.2505 D.O.F. 3 ratio = 6.06260E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5069 D.O.F. 3 ratio = 5.98944E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5779 D.O.F. 3 ratio = 6.64290E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5930 D.O.F. 3 ratio = 5.06973E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5932 D.O.F. 3 ratio = 43.9842E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.9807 D.O.F. 3 ratio = 6.90718E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.95 D.O.F. 3 ratio = 5.28565E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5314 D.O.F. 3 ratio = 4.87347E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.4446 D.O.F. 3 ratio = 12.7125E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.1314 D.O.F. 3 ratio = 11.6188E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5810 D.O.F. 3 ratio = 4.76208E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.8815 D.O.F. 3 ratio = 26.0838E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.8486 D.O.F. 3 ratio = 36.4567E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.6458 D.O.F. 3 ratio = 7.51568E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5886 D.O.F. 3 ratio = 5.03334E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5217 D.O.F. 3 ratio = 5.27853E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.7242 D.O.F. 3 ratio = 5.53601E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5379 D.O.F. 3 ratio = 6.24178E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.8357 D.O.F. 3 ratio = 19.1481E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.8967 D.O.F. 3 ratio = 8.27736E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.5330 D.O.F. 3 ratio = 22.2800E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.435 D.O.F. 3 ratio = 6.19020E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.8643 D.O.F. 3 ratio = 22.9472E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.6539 D.O.F. 3 ratio = 5.43487E+09. Solver problem. Numerical singularity when processing node P1TEST-2-1.7725 D.O.F. 3 ratio = 13.8887E+09 . The system matrix has 8044 negative eigenvalues. Solver problem. Numerical singularity when processing node P1TEST-2-1.5 D.O.F. 1 ratio = 3.24844E+12. Solver problem. Numerical singularity when processing node P1TEST-2-1.5 D.O.F. 2 ratio = 445.235E+09 . Solver problem. Numerical singularity when processing node P1TEST-2-1.5 D.O.F. 3 ratio = 190.875E+09 . The system matrix has 8189 negative eigenvalues. Solver problem. Zero pivot when processing node P1TEST-3-1.2398 D.O.F. 1. Solver problem. Zero pivot when processing node P1TEST-3-1.2398 D.O.F. 2. Solver problem. Zero pivot when processing node P1TEST-3-1.2398 D.O.F. 3. Solver problem. Zero pivot when processing node P1TEST-3-1.2395 D.O.F. 1. Solver problem. Zero pivot when processing node P1TEST-3-1.2395 D.O.F. 2. Solver problem. Zero pivot when processing node P1TEST-3-1.2395 D.O.F. 3. Solver problem. Zero pivot when processing node P1TEST-3-1.2397 D.O.F. 1. Solver problem. Zero pivot when processing node P1TEST-3-1.2397 D.O.F. 2. Solver problem. Zero pivot when processing node P1TEST-3-1.2397 D.O.F. 3. Solver problem. Zero pivot when processing node P1TEST-3-1.2394 D.O.F. 1. Solver problem. Zero pivot when processing node P1TEST-3-1.2394 D.O.F. 2. Solver problem. Zero pivot when processing node P1TEST-3-1.2394 D.O.F. 3. Solver problem. Zero pivot when processing node P1TEST-3-1.3858 D.O.F. 1. Solver problem. Zero pivot when processing node P1TEST-3-1.3858 D.O.F. 2. Solver problem. Zero pivot when processing node P1TEST-3-1.3858 D.O.F. 3. Solver problem. Zero pivot when processing node P1TEST-3-1.3493 D.O.F. 1. Solver problem. Zero pivot when processing node P1TEST-3-1.3493 D.O.F. 2. Solver problem. Zero pivot when processing node P1TEST-3-1.3493 D.O.F. 3. Solver problem. Zero pivot when processing node P1TEST-3-1.3128 D.O.F. 1. Solver problem. Zero pivot when processing node P1TEST-3-1.3128 D.O.F. 2. Solver problem. Zero pivot when processing node P1TEST-3-1.3128 D.O.F. 3. Solver problem. Zero pivot when processing node P1TEST-3-1.2763 D.O.F. 1. Solver problem. Zero pivot when processing node P1TEST-3-1.2763 D.O.F. 2. Solver problem. Zero pivot when processing node P1TEST-3-1.2763 D.O.F. 3. Solver problem. Zero pivot when processing node P1TEST-3-1.2234 D.O.F. 1. Solver problem. Zero pivot when processing node P1TEST-3-1.2234 D.O.F. 2. Solver problem. Zero pivot when processing node P1TEST-3-1.2234 D.O.F. 3. Solver problem. Zero pivot when processing node P1TEST-3-1.2233 D.O.F. 1. Solver problem. Zero pivot when processing node P1TEST-3-1.2233 D.O.F. 2.
最新发布
07-30
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值