제출 #340344

#제출 시각아이디문제언어결과실행 시간메모리
340344beksultan04원형 문자열 (IZhO13_rowords)C++14
24 / 100
2100 ms11884 KiB
#include <bits/stdc++.h> using namespace std; //#define int long long #define pii pair<int,int> #define OK puts("OK"); #define NO puts("NO"); #define YES puts("YES"); #define fr first #define sc second #define ret return #define scan1(a) scanf("%d",&a); #define scan2(a,b) scanf("%d %d",&a, &b); #define scan3(a,b,c) scanf("%d %d %d",&a,&b,&c); #define all(s) s.begin(),s.end() #define allr(s) s.rbegin(),s.rend() #define pb push_back #define sz(v) (int)v.size() #define endi puts(""); #define eps 1e-12 const int N = 3e5+12,INF=100500; int q[N],n,m; int dp[2001][2001]; inline void fun(string &a,string &b){ int i,j; for (i=1;i<=n;++i){ for (j=1;j<=m;++j){ dp[i][j] = max(dp[i][j-1],dp[i-1][j]); if (a[i-1]==b[j-1]){ dp[i][j] = max(dp[i][j],dp[i-1][j-1]+1); } } } } void rev(string &a){ a.pb(a[0]); a.erase(a.begin()); } main(){ string a,b; string ss,s; cin>>ss>>s; n = ss.size();m = s.size(); int i,j; for (i=0;i<n;++i){ a.pb(ss[i]); } for (i=0;i<m;++i){ b.pb(s[i]); } fun(a,b); int ans = dp[n][m]; for (i=0;i<n;++i){ rev(a); fun(a,b); ans = max(ans,dp[n][m]); } reverse(all(b)); for (i=0;i<n;++i){ rev(a);fun(a,b); ans = max(ans,dp[n][m]); } cout <<ans; }

컴파일 시 표준 에러 (stderr) 메시지

rowords.cpp:41:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   41 | main(){
      |      ^
rowords.cpp: In function 'int main()':
rowords.cpp:46:11: warning: unused variable 'j' [-Wunused-variable]
   46 |     int i,j;
      |           ^
#Verdict Execution timeMemoryGrader output
Fetching results...