난잡 한 프로 그래 밍 기법 (난수, 효율) 과 사이트 (http://bytew.net/OIer/)
1471 단어 OI
#include
#include
#include
#include
#define N 10000000
using namespace std;
int main(){
freopen("a.in","w",stdout);
register int a;
srand(time(0)) ;
for( int i=0;i
#include
#include
#include
#include
#define N 50000005
using namespace std;
int a[N],b[N],start=clock();
void init(int a[]){
string s;
cin>>s;
a[0]=s.size();
for(register int i=1;i<=a[0];++i)
a[i]=s[a[0]-i]-'0';
return;
}
void jia(int a[],int b[]){
if(a[0]0)++a[0];
return;
}
void print(int a[]){
for(register int i=a[0];i>0;--i)putchar(a[i]+'0');
putchar('
');
return;
}
int main(){
freopen("a.in","r",stdin);
freopen("a.out","w",stdout);
init(a);
init(b);
jia(a,b);
print(a);
int end=clock();
printf("%d",end-start);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【POJ 1160】Post OfficeThere are no two villages in the same position. Post offices will be built in some, but not necessarily all of the villa...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.