Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
100428 | 赵德明 | [HNOI2008]越狱 | C++ | 内存超限 | 10 | 2001 MS | 131308 KB | 411 | 2023-08-25 19:55:18 |
#include<bits/stdc++.h> using namespace std; long long m,n,cnt=0; void stf(long long x,long long last,int was){ if(n+1==x){ return; } int boo=0; for(int i=1;i<=m;i++) { if(i==last) { //cout<<i<<" "<<last<<" "<<was<<endl; cnt = (cnt+1)%100003; boo=1; } stf(x+1,i,boo); boo=0; } return; } int main(){ cin>>m>>n; stf(1,-1,0); cout<<cnt%100003; return 0; }