結果

問題 No.962 LCPs
ユーザー tarattata1
提出日時 2019-12-24 23:34:42
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 1,173 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 69,644 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-22 15:50:49
合計ジャッジ時間 2,512 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 64
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’:
main.cpp:33:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   33 |     scanf("%d", &n);
      |     ~~~~~^~~~~~~~~~
main.cpp:38:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   38 |         scanf("%s", str[curr]);
      |         ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <iterator>
#include <assert.h>
#pragma warning(disable:4996) 
 
typedef long long ll;
#define MIN(a, b) ((a)>(b)? (b): (a))
#define MAX(a, b) ((a)<(b)? (b): (a))
#define LINF 9223300000000000000
#define INF 2140000000
const long long MOD = 1000000007;
//const long long MOD = 998244353;
using namespace std;

char str[2][200005];
int  len[2];
int  a[200005];

int main(int argc, char* argv[])
{
    int n;
    scanf("%d", &n);
    ll sum=0;
    int i,j;
    int prev=0, curr=1;
    for(i=0; i<n; i++) {
        scanf("%s", str[curr]);
        len[curr]=strlen(str[curr]);
        int same=1;
        for(j=0; j<len[curr]; j++) {
            if(i>0 && j<len[prev] && same && str[prev][j]==str[curr][j]) {
                a[j]=a[j]+1;
            }
            else {
                a[j]=1;
                same=0;
            }
            sum+=(ll)a[j]*(a[j]+1)/2;
        }
        swap(prev,curr);
    }
    printf("%lld\n", sum);


    return 0;
}
0