#37389: C++詳解


terrytseng98@gmail.com (曾宥誠)

學校 : 不指定學校
編號 : 239893
來源 : [36.226.0.232]
最後登入時間 :
2023-12-17 15:52:11
j606. 2. 造字程式 -- 2023年1月APCS | From: [1.171.144.235] | 發表日期 : 2023-09-04 21:32

#include <bits/stdc++.h>
using namespace std;

char ans[25][25];

int main(){


    ios_base::sync_with_stdio(0);     //加速cin
    cin.tie(0);                                   //加速cin

    int k, q, r;
    cin >> k >> q >> r;
    cin >> ans[0];

    for(int i = 0; i < q; i++){
        for(int j = 0; j < k; j++){
            int x; cin >> x;
            ans[i+1][x-1] = ans[i][j];
        }
    }

    for(int i = 0; i < r; i++){
        for(int j = 1; j <= q; j++){
            cout << ans[j][i];
        }
        cout << '\n';
    }

    return 0;
}

 

 
ZeroJudge Forum