LA3942

本文介绍了一个关于字符串组合的问题,即如何将一个给定的字符串通过一个预定义的单词集合进行分割,并计算出所有可能的分割方式的数量。文章提供了一段C++代码实现,该算法利用了前缀树(Trie)来高效地解决此问题。



Remember the Word

Time Limit: 3000MS Memory Limit: Unknown 64bit IO Format: %lld & %llu

[]   [Go Back]   [Status]  

Description

Download as PDF

Neal is very curious about combinatorial problems, and now here comes a problem about words. Knowing that Ray has a photographic memory and this may not trouble him, Neal gives it to Jiejie.

Since Jiejie can't remember numbers clearly, he just uses sticks to help himself. Allowing for Jiejie's only 20071027 sticks, he can only record the remainders of the numbers divided by total amount of sticks.

The problem is as follows: a word needs to be divided into small pieces in such a way that each piece is from some given set of words. Given a word and the set of words, Jiejie should calculate the number of ways the given word can be divided, using the words in the set.

Input

The input file contains multiple test cases. For each test case: the first line contains the given word whose length is no more than 300 000.

The second line contains an integer S , 1$ \le$S$ \le$4000 .

Each of the following S lines contains one word from the set. Each word will be at most 100 characters long. There will be no two identical words and all letters in the words will be lowercase.

There is a blank line between consecutive test cases.

You should proceed to the end of file.

Output

For each test case, output the number, as described above, from the task description modulo 20071027.

Sample Input

abcd 
4 
a 
b 
cd 
ab

Sample Output

Case 1: 2


http://vjudge.net/problem/viewProblem.action?id=22109


#include<cstdio>
#include<cstring>
using namespace std;
const int mode = 20071027;
const int maxn = 310000;
char str[maxn];
int dp[maxn];
char a[110];
struct node
{
    int next[26];
    int f;
} T[4000*100];
int tot;
void insert()
{
    int root=0;
    for(int i=0; a[i]; i++)
    {
        if(T[root].next[ a[i]-'a']==-1)
        {
            T[root].next[ a[i]-'a' ] = tot++;
        }
        root=T[root].next[a[i]-'a' ];
    }
    T[root].f=1;
}
int main()
{
    int n;
    int ca=1;
    while(scanf("%s",str+1)!=EOF)
    {
        scanf("%d",&n);
        memset(T,-1,sizeof(T));
        tot=1;
        while(n--)
        {
            scanf("%s",a);
            insert();
        }
        memset(dp,0,sizeof(dp));
        int len=strlen(str+1);
        dp[0]=1;
        str[0]=1;
        for(int i=0; str[i]; i++)
        {
            int  root=0;
            for(int j=1; str[i+j]; j++)
            {
                root=T[root].next[ str[i+j]-'a' ];
                if(root==-1 ) break;
                else
                {
                    if(T[root].f==1)
                    {
                        dp[i+j]+=dp[i];
                        while(dp[i+j]>mode)dp[i+j]-=mode;
                    }
                }

            }
             for(int i=1;str[i];i++)
            printf("%d ",dp[i]);
            puts("");
        }

        printf("Case %d: %d\n",ca++,dp[len]);
    }
    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、付费专栏及课程。

余额充值